Browse Source

ffplay: check return code of avcodec_decode_video2()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Marton Balint <cus@passwd.hu>
tags/n1.0
Michael Niedermayer Marton Balint 13 years ago
parent
commit
349b65eee2
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      ffplay.c

+ 2
- 1
ffplay.c View File

@@ -1504,7 +1504,8 @@ static int get_video_frame(VideoState *is, AVFrame *frame, int64_t *pts, AVPacke
return 0;
}

avcodec_decode_video2(is->video_st->codec, frame, &got_picture, pkt);
if(avcodec_decode_video2(is->video_st->codec, frame, &got_picture, pkt) < 0)
return -1;

if (got_picture) {
int ret = 1;


Loading…
Cancel
Save