Commit d7ee744d authored by Laurent Aimar's avatar Laurent Aimar

Fixed typo in es_out.

Pointed out by Dnumgis.
parent ba387307
...@@ -587,7 +587,7 @@ static void EsOutChangePosition( es_out_t *out ) ...@@ -587,7 +587,7 @@ static void EsOutChangePosition( es_out_t *out )
input_DecoderStartBuffering( p_es->p_dec ); input_DecoderStartBuffering( p_es->p_dec );
if( p_es->p_dec_record ) if( p_es->p_dec_record )
input_DecoderStartBuffering( p_es->p_dec ); input_DecoderStartBuffering( p_es->p_dec_record );
} }
for( int i = 0; i < p_sys->i_pgrm; i++ ) for( int i = 0; i < p_sys->i_pgrm; i++ )
...@@ -680,7 +680,7 @@ static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced ) ...@@ -680,7 +680,7 @@ static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced )
input_DecoderStopBuffering( p_es->p_dec ); input_DecoderStopBuffering( p_es->p_dec );
if( p_es->p_dec_record ) if( p_es->p_dec_record )
input_DecoderStopBuffering( p_es->p_dec ); input_DecoderStopBuffering( p_es->p_dec_record );
} }
} }
static void EsOutDecodersChangePause( es_out_t *out, bool b_paused, mtime_t i_date ) static void EsOutDecodersChangePause( es_out_t *out, bool b_paused, mtime_t i_date )
......
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