Commit c5f0b6d0 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

mpeg: Flag unused arguments.

parent c3cf43d7
...@@ -319,6 +319,7 @@ int EStoPES ( sout_instance_t *p_sout, block_t **pp_pes, block_t *p_es, ...@@ -319,6 +319,7 @@ int EStoPES ( sout_instance_t *p_sout, block_t **pp_pes, block_t *p_es,
int b_mpeg2, int b_data_alignment, int i_header_size, int b_mpeg2, int b_data_alignment, int i_header_size,
int i_max_pes_size ) int i_max_pes_size )
{ {
VLC_UNUSED(p_sout);
block_t *p_pes; block_t *p_pes;
mtime_t i_pts, i_dts, i_length; mtime_t i_pts, i_dts, i_length;
......
...@@ -1765,6 +1765,7 @@ static int Mux( sout_mux_t *p_mux ) ...@@ -1765,6 +1765,7 @@ static int Mux( sout_mux_t *p_mux )
#define STD_PES_PAYLOAD 170 #define STD_PES_PAYLOAD 170
static block_t *FixPES( sout_mux_t *p_mux, block_fifo_t *p_fifo ) static block_t *FixPES( sout_mux_t *p_mux, block_fifo_t *p_fifo )
{ {
VLC_UNUSED(p_mux);
block_t *p_data; block_t *p_data;
size_t i_size; size_t i_size;
...@@ -2003,6 +2004,7 @@ static void TSDate( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts, ...@@ -2003,6 +2004,7 @@ static void TSDate( sout_mux_t *p_mux, sout_buffer_chain_t *p_chain_ts,
static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream, static block_t *TSNew( sout_mux_t *p_mux, ts_stream_t *p_stream,
bool b_pcr ) bool b_pcr )
{ {
VLC_UNUSED(p_mux);
block_t *p_pes = p_stream->chain_pes.p_first; block_t *p_pes = p_stream->chain_pes.p_first;
block_t *p_ts; block_t *p_ts;
...@@ -2222,6 +2224,7 @@ static void PEStoTS( sout_instance_t *p_sout, ...@@ -2222,6 +2224,7 @@ static void PEStoTS( sout_instance_t *p_sout,
sout_buffer_chain_t *c, block_t *p_pes, sout_buffer_chain_t *c, block_t *p_pes,
ts_stream_t *p_stream ) ts_stream_t *p_stream )
{ {
VLC_UNUSED(p_sout);
uint8_t *p_data; uint8_t *p_data;
int i_size; int i_size;
int b_new_pes; int b_new_pes;
...@@ -2313,6 +2316,7 @@ static void PEStoTS( sout_instance_t *p_sout, ...@@ -2313,6 +2316,7 @@ static void PEStoTS( sout_instance_t *p_sout,
static block_t *WritePSISection( sout_instance_t *p_sout, static block_t *WritePSISection( sout_instance_t *p_sout,
dvbpsi_psi_section_t* p_section ) dvbpsi_psi_section_t* p_section )
{ {
VLC_UNUSED(p_sout);
block_t *p_psi, *p_first = NULL; block_t *p_psi, *p_first = NULL;
while( p_section ) while( p_section )
......
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