]> git.sesse.net Git - vlc/commitdiff
When deleting track, reduce stream bitrate too, unless bitrate is
authorIlkka Ollakka <ileoo@videolan.org>
Wed, 2 Jul 2008 20:30:13 +0000 (23:30 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Wed, 2 Jul 2008 20:30:13 +0000 (23:30 +0300)
defined from commandline.

modules/mux/asf.c

index 91969817ca525b68edb711f65f498df0c26e5188..52a455307556e33ca4e522170ae70a990d549edb 100644 (file)
@@ -597,7 +597,27 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
  *****************************************************************************/
 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
 {
-    VLC_UNUSED(p_input);
+    /* if bitrate ain't defined in commanline, reduce it when tracks are deleted
+     */
+    sout_mux_sys_t   *p_sys = p_mux->p_sys;
+    asf_track_t      *tk = p_input->p_sys;
+    if(!p_sys->i_bitrate_override)
+    {
+        if( tk->i_cat == AUDIO_ES )
+        {
+             if( p_input->p_fmt->i_bitrate > 24000 )
+                 p_sys->i_bitrate -= p_input->p_fmt->i_bitrate;
+             else
+                 p_sys->i_bitrate -= 512000;
+        }
+        else if(tk->i_cat == VIDEO_ES )
+        {
+             if( p_input->p_fmt->i_bitrate > 50000 )
+                 p_sys->i_bitrate -= p_input->p_fmt->i_bitrate;
+             else
+                 p_sys->i_bitrate -= 1000000;
+        }
+    }
     msg_Dbg( p_mux, "removing input" );
     return VLC_SUCCESS;
 }