From: RĂ©mi Denis-Courmont Date: Fri, 29 Aug 2008 16:08:21 +0000 (+0300) Subject: Remove leftover code X-Git-Tag: 1.0.0-pre1~3692 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=eb3eab26d98260f1d7bcf07cd3c9372f59a3d6dc;p=vlc Remove leftover code --- diff --git a/modules/access_output/shout.c b/modules/access_output/shout.c index 601e6d711b..5a73958666 100644 --- a/modules/access_output/shout.c +++ b/modules/access_output/shout.c @@ -464,13 +464,6 @@ static int Open( vlc_object_t *p_this ) msg_Dbg( p_access, "shout access output opened (%s@%s:%i/%s)", psz_user, psz_host, i_port, psz_mount ); - - /* Update pace control flag */ - if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) ) - { - p_access->p_sout->i_out_pace_nocontrol++; - } - free( psz_accessname ); return VLC_SUCCESS; @@ -489,13 +482,6 @@ static void Close( vlc_object_t * p_this ) shout_shutdown(); } free( p_access->p_sys ); - - /* Update pace control flag */ - if( p_access->psz_access && !strcmp( p_access->psz_access, "stream" ) ) - { - p_access->p_sout->i_out_pace_nocontrol--; - } - msg_Dbg( p_access, "shout access output closed" ); }