[vlc-devel] commit: Fixed typo in es_out. (Laurent Aimar )

git version control git at videolan.org
Tue Jan 6 21:43:24 CET 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Jan  6 21:40:57 2009 +0100| [d7ee744d72c25f64e31a056d6e6597e40be1e9ee] | committer: Laurent Aimar 

Fixed typo in es_out.

Pointed out by Dnumgis.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d7ee744d72c25f64e31a056d6e6597e40be1e9ee
---

 src/input/es_out.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/input/es_out.c b/src/input/es_out.c
index 703e4bf..1062aa5 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -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 )




More information about the vlc-devel mailing list