[vlc-commits] autodel does not need for pace control
Rémi Denis-Courmont
git at videolan.org
Sat Oct 6 21:26:28 CEST 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Oct 6 22:25:05 2012 +0300| [ec6361608b0d35887d36ceada9a7f75f0266d096] | committer: Rémi Denis-Courmont
autodel does not need for pace control
While this plugin is normally only used with pace-controlled outputs,
it does not need pace control itself.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ec6361608b0d35887d36ceada9a7f75f0266d096
---
modules/stream_out/autodel.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/modules/stream_out/autodel.c b/modules/stream_out/autodel.c
index 2bb5f17..390af01 100644
--- a/modules/stream_out/autodel.c
+++ b/modules/stream_out/autodel.c
@@ -97,9 +97,6 @@ static int Open( vlc_object_t *p_this )
p_stream->p_sys = p_sys;
- /* update p_sout->i_out_pace_nocontrol */
- p_stream->p_sout->i_out_pace_nocontrol++;
-
return VLC_SUCCESS;
}
@@ -111,8 +108,6 @@ static void Close( vlc_object_t * p_this )
sout_stream_t *p_stream = (sout_stream_t*)p_this;
sout_stream_sys_t *p_sys = (sout_stream_sys_t *)p_stream->p_sys;
- p_stream->p_sout->i_out_pace_nocontrol--;
-
free( p_sys );
}
More information about the vlc-commits
mailing list