Browse Source

fix issue 1747

Originally committed as revision 21874 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Michael Niedermayer 15 years ago
parent
commit
077a8d61c0
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      ffplay.c

+ 4
- 2
ffplay.c View File

@@ -2070,9 +2070,11 @@ static int decode_thread(void *arg)
stream_component_open(is, audio_index); stream_component_open(is, audio_index);
} }


ret=-1;
if (video_index >= 0) { if (video_index >= 0) {
stream_component_open(is, video_index);
} else {
ret= stream_component_open(is, video_index);
}
if(ret<0) {
/* add the refresh timer to draw the picture */ /* add the refresh timer to draw the picture */
schedule_refresh(is, 40); schedule_refresh(is, 40);




Loading…
Cancel
Save