[vlc-devel] commit: Do not delay rate change after end of pause. (Laurent Aimar )
git version control
git at videolan.org
Fri Oct 23 23:14:52 CEST 2009
vlc | branch: 1.0-bugfix | Laurent Aimar <fenrir at videolan.org> | Wed Jul 15 19:04:59 2009 +0200| [496b61417f73e27a0160ad07263674f1691b0ef9] | committer: Laurent Aimar
Do not delay rate change after end of pause.
(cherry picked from commit 6270718870b349259f4ed1c44e164776e2a67fb1)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=496b61417f73e27a0160ad07263674f1691b0ef9
---
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 e91a6a7..3b6d214 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -585,9 +585,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