Commit 5823e6e1 authored by Laurent Aimar's avatar Laurent Aimar

* ALL : ES will be selected only once (thx sam ).

parent 1f8b21a7
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc * avi.c : AVI file Stream input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: avi.c,v 1.20 2002/05/25 16:23:07 fenrir Exp $ * $Id: avi.c,v 1.20.2.1 2002/06/03 16:33:51 fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -538,7 +538,7 @@ static int AVIInit( input_thread_t *p_input ) ...@@ -538,7 +538,7 @@ static int AVIInit( input_thread_t *p_input )
return( -1 ); return( -1 );
} }
p_input->stream.p_selected_program = p_input->stream.pp_programs[0]; p_input->stream.p_selected_program = p_input->stream.pp_programs[0];
p_input->stream.p_new_program = p_input->stream.pp_programs[0] ; /* p_input->stream.p_new_program = p_input->stream.pp_programs[0] ; */
p_input->stream.i_mux_rate = p_avi_demux->avih.i_maxbytespersec / 50; p_input->stream.i_mux_rate = p_avi_demux->avih.i_maxbytespersec / 50;
vlc_mutex_unlock( &p_input->stream.stream_lock ); vlc_mutex_unlock( &p_input->stream.stream_lock );
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mpeg_audio.c : mpeg_audio Stream input module for vlc * mpeg_audio.c : mpeg_audio Stream input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: mpeg_audio.c,v 1.8 2002/05/18 17:47:47 sam Exp $ * $Id: mpeg_audio.c,v 1.8.2.1 2002/06/03 16:33:51 fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -448,8 +448,8 @@ static int MPEGAudioInit( input_thread_t * p_input ) ...@@ -448,8 +448,8 @@ static int MPEGAudioInit( input_thread_t * p_input )
return( -1 ); return( -1 );
} }
p_input->stream.pp_programs[0]->b_is_ok = 0; p_input->stream.pp_programs[0]->b_is_ok = 0;
p_input->stream.p_selected_program = p_input->stream.p_selected_program = p_input->stream.pp_programs[0];
p_input->stream.p_new_program = p_input->stream.pp_programs[0]; /* p_input->stream.p_new_program p_input->stream.pp_programs[0]; */
/* create our ES */ /* create our ES */
p_es = input_AddES( p_input, p_es = input_AddES( p_input,
......
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