Commit 077a8d61 authored by Michael Niedermayer's avatar Michael Niedermayer

fix issue 1747

Originally committed as revision 21874 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5e46be96
......@@ -2070,9 +2070,11 @@ static int decode_thread(void *arg)
stream_component_open(is, audio_index);
}
ret=-1;
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 */
schedule_refresh(is, 40);
......
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