1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavc: use buf[0] instead of data[0] as the indicator of an allocated frame

data[0] may be NULL for valid frames with hwaccel pixel formats.
This commit is contained in:
Anton Khirnov 2013-11-29 20:16:07 +01:00
parent e5419709f5
commit d4f0f2d1e8

View File

@ -1416,7 +1416,7 @@ int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *pi
emms_c(); //needed to avoid an emms_c() call before every return; emms_c(); //needed to avoid an emms_c() call before every return;
if (ret < 0 && picture->data[0]) if (ret < 0 && picture->buf[0])
av_frame_unref(picture); av_frame_unref(picture);
if (*got_picture_ptr) { if (*got_picture_ptr) {