diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-13 19:35:22 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-12-04 21:45:36 +0100 |
commit | df9b9567518f2840d79a4a96b447ebe1aa326408 (patch) | |
tree | 7f247e6d290e56536306d6ce157e76f6025fee66 /libavcodec/mss3.c | |
parent | 387bef95d28019c13c6805cfa4079e59948284e5 (diff) | |
download | ffmpeg-df9b9567518f2840d79a4a96b447ebe1aa326408.tar.gz |
lavc: fix decode_frame() third parameter semantics for video decoders
It's got_frame, not data size
Diffstat (limited to 'libavcodec/mss3.c')
-rw-r--r-- | libavcodec/mss3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mss3.c b/libavcodec/mss3.c index a41db22249..689daeee5d 100644 --- a/libavcodec/mss3.c +++ b/libavcodec/mss3.c @@ -674,7 +674,7 @@ static av_cold void init_coders(MSS3Context *ctx) } } -static int mss3_decode_frame(AVCodecContext *avctx, void *data, int *data_size, +static int mss3_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) { const uint8_t *buf = avpkt->data; @@ -740,7 +740,7 @@ static int mss3_decode_frame(AVCodecContext *avctx, void *data, int *data_size, c->pic.key_frame = keyframe; c->pic.pict_type = keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P; if (!bytestream2_get_bytes_left(&gb)) { - *data_size = sizeof(AVFrame); + *got_frame = 1; *(AVFrame*)data = c->pic; return buf_size; @@ -798,7 +798,7 @@ static int mss3_decode_frame(AVCodecContext *avctx, void *data, int *data_size, dst[2] += c->pic.linesize[2] * 8; } - *data_size = sizeof(AVFrame); + *got_frame = 1; *(AVFrame*)data = c->pic; return buf_size; |