[vlc-devel] commit: Do not delay rate change after end of pause. (Laurent Aimar )

git version control git at videolan.org
Wed Jul 15 19:29:21 CEST 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Jul 15 19:04:59 2009 +0200| [6270718870b349259f4ed1c44e164776e2a67fb1] | committer: Laurent Aimar 

Do not delay rate change after end of pause.

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

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

diff --git a/src/input/es_out.c b/src/input/es_out.c
index 5568b6f..3762e84 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -573,9 +573,7 @@ static void EsOutChangeRate( es_out_t *out, int i_rate )
     es_out_sys_t      *p_sys = out->p_sys;
 
     p_sys->i_rate = i_rate;
-
-    if( !p_sys->b_paused )
-        EsOutProgramsChangeRate( out );
+    EsOutProgramsChangeRate( out );
 }
 
 static void EsOutChangePosition( es_out_t *out )




More information about the vlc-devel mailing list