]> git.sesse.net Git - vlc/commitdiff
Fixed typo in es_out.
authorLaurent Aimar <fenrir@videolan.org>
Tue, 6 Jan 2009 20:40:57 +0000 (21:40 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 6 Jan 2009 20:40:57 +0000 (21:40 +0100)
Pointed out by Dnumgis.

src/input/es_out.c

index 703e4bf076e87687e7ff894b3279cb8015a42f58..1062aa51de6ebc2fe5a124a08bc6cf588683e859 100644 (file)
@@ -587,7 +587,7 @@ static void EsOutChangePosition( es_out_t *out )
         input_DecoderStartBuffering( p_es->p_dec );
 
         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++ )
@@ -680,7 +680,7 @@ static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced )
 
         input_DecoderStopBuffering( p_es->p_dec );
         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 )