X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fproresdec_lgpl.c;h=4fa2817e863dac8e4c837400b9401af628b44b8f;hb=efb4f96a7a8bc22f0f615e7e21a2bfe9b0f5088e;hp=ce2396960dfd5ed91b64f2106b38efc94642a7bd;hpb=874c5b02c4117d5261365d0de727c0b4dc9363f6;p=ffmpeg diff --git a/libavcodec/proresdec_lgpl.c b/libavcodec/proresdec_lgpl.c index ce2396960df..4fa2817e863 100644 --- a/libavcodec/proresdec_lgpl.c +++ b/libavcodec/proresdec_lgpl.c @@ -599,7 +599,7 @@ static int decode_picture(ProresContext *ctx, int pic_num, #define MOVE_DATA_PTR(nbytes) buf += (nbytes); buf_size -= (nbytes) -static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, +static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) { ProresContext *ctx = avctx->priv_data; @@ -641,7 +641,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, MOVE_DATA_PTR(pic_data_size); } - *data_size = sizeof(AVPicture); + *got_frame = 1; *(AVFrame*) data = *avctx->coded_frame; return avpkt->size;