diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-12-05 18:24:43 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-12-05 18:24:43 +0000 |
commit | 4012cd6c4f19f09cac86c9b8c9738f27bb691764 (patch) | |
tree | 605a9342eb74f30c32ce1a772880612e7066d930 /libavcodec/libutvideodec.cpp | |
parent | 835fd779a46d14d6999618546a9833b3f2af2326 (diff) | |
download | ffmpeg-4012cd6c4f19f09cac86c9b8c9738f27bb691764.tar.gz |
lavc: fix decode_frame() third parameter semantics for rest of video decoders
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/libutvideodec.cpp')
-rw-r--r-- | libavcodec/libutvideodec.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libutvideodec.cpp b/libavcodec/libutvideodec.cpp index f4ba8b3bda..f70ac4f48f 100644 --- a/libavcodec/libutvideodec.cpp +++ b/libavcodec/libutvideodec.cpp @@ -115,7 +115,7 @@ static av_cold int utvideo_decode_init(AVCodecContext *avctx) } static int utvideo_decode_frame(AVCodecContext *avctx, void *data, - int *data_size, AVPacket *avpkt) + int *got_frame, AVPacket *avpkt) { UtVideoContext *utv = (UtVideoContext *)avctx->priv_data; AVFrame *pic = avctx->coded_frame; @@ -150,7 +150,7 @@ static int utvideo_decode_frame(AVCodecContext *avctx, void *data, break; } - *data_size = sizeof(AVFrame); + *got_frame = 1; *(AVFrame *)data = *pic; return avpkt->size; |