]> git.sesse.net Git - vlc/commitdiff
* modules/mux/mpeg/ts.c: Fixed --sout-ts-crypt-audio and
authorChristophe Massiot <massiot@videolan.org>
Tue, 7 Nov 2006 19:57:50 +0000 (19:57 +0000)
committerChristophe Massiot <massiot@videolan.org>
Tue, 7 Nov 2006 19:57:50 +0000 (19:57 +0000)
   --sout-ts-crypt-video options.

modules/mux/mpeg/ts.c

index cd54f04df30f2b400b5258d0cd5cb48b44850c77..109caeab02c995f09aa18f747469b5084b071928 100644 (file)
@@ -1586,7 +1586,6 @@ static int Mux( sout_mux_t *p_mux )
             /* Select stream (lowest dts) */
             for( i = 0, i_stream = -1, i_dts = 0; i < p_mux->i_nb_inputs; i++ )
             {
-                p_input = p_mux->pp_inputs[i];
                 p_stream = (ts_stream_t*)p_mux->pp_inputs[i]->p_sys;
 
                 if( p_stream->i_pes_dts == 0 )
@@ -1606,6 +1605,7 @@ static int Mux( sout_mux_t *p_mux )
                 break;
             }
             p_stream = (ts_stream_t*)p_mux->pp_inputs[i_stream]->p_sys;
+            p_input = p_mux->pp_inputs[i_stream];
 
             /* do we need to issue pcr */
             b_pcr = VLC_FALSE;