Commit ec636160 authored by Rémi Denis-Courmont's avatar 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.
parent 0a66b41b
......@@ -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 );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment