Commit cd720479 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

- b_rtpts should really b a boolean (!)

- optimize ..._sys_t layout a little
parent 6ccd86f3
...@@ -173,17 +173,17 @@ typedef struct sout_access_thread_t ...@@ -173,17 +173,17 @@ typedef struct sout_access_thread_t
struct sout_access_out_sys_t struct sout_access_out_sys_t
{ {
int b_rtpts; // 1 if add rtp/ts header int i_mtu;
vlc_bool_t b_rtpts; // 1 if add rtp/ts header
vlc_bool_t b_mtu_warning;
uint16_t i_sequence_number; uint16_t i_sequence_number;
uint32_t i_ssrc; uint32_t i_ssrc;
int i_mtu;
block_t *p_buffer; block_t *p_buffer;
sout_access_thread_t *p_thread; sout_access_thread_t *p_thread;
vlc_bool_t b_mtu_warning;
}; };
#define DEFAULT_PORT 1234 #define DEFAULT_PORT 1234
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment