summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ffplay.c b/ffplay.c
index 217107e948..5f12f9811f 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -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);