Changeset cd720479c5abc31f0f743c4c68263d2c35cd119c
- Timestamp:
- 02/19/07 17:50:32
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1171903832 +0000
- git-parent:
[6ccd86f32b8ba1030e2d744c8b1c0b1c1caea3c6]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1171903832 +0000
- Message:
- b_rtpts should really b a boolean (!)
- optimize ..._sys_t layout a little
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6ccd86f |
rcd72047 |
|
| 174 | 174 | struct sout_access_out_sys_t |
|---|
| 175 | 175 | { |
|---|
| 176 | | int b_rtpts; // 1 if add rtp/ts header |
|---|
| | 176 | int i_mtu; |
|---|
| | 177 | |
|---|
| | 178 | vlc_bool_t b_rtpts; // 1 if add rtp/ts header |
|---|
| | 179 | vlc_bool_t b_mtu_warning; |
|---|
| 177 | 180 | uint16_t i_sequence_number; |
|---|
| 178 | 181 | uint32_t i_ssrc; |
|---|
| 179 | 182 | |
|---|
| 180 | | int i_mtu; |
|---|
| 181 | | |
|---|
| 182 | 183 | block_t *p_buffer; |
|---|
| 183 | 184 | |
|---|
| 184 | 185 | sout_access_thread_t *p_thread; |
|---|
| 185 | 186 | |
|---|
| 186 | | vlc_bool_t b_mtu_warning; |
|---|
| 187 | 187 | }; |
|---|
| 188 | 188 | |
|---|