From df9b9567518f2840d79a4a96b447ebe1aa326408 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 13 Nov 2012 19:35:22 +0100 Subject: lavc: fix decode_frame() third parameter semantics for video decoders It's got_frame, not data size --- libavcodec/tscc2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/tscc2.c') diff --git a/libavcodec/tscc2.c b/libavcodec/tscc2.c index 36287137ad..b7f1b8899b 100644 --- a/libavcodec/tscc2.c +++ b/libavcodec/tscc2.c @@ -211,7 +211,7 @@ static int tscc2_decode_slice(TSCC2Context *c, int mb_y, } static int tscc2_decode_frame(AVCodecContext *avctx, void *data, - int *data_size, AVPacket *avpkt) + int *got_frame, AVPacket *avpkt) { const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; @@ -238,7 +238,7 @@ static int tscc2_decode_frame(AVCodecContext *avctx, void *data, } if (frame_type == 0) { - *data_size = sizeof(AVFrame); + *got_frame = 1; *(AVFrame*)data = c->pic; return buf_size; @@ -322,7 +322,7 @@ static int tscc2_decode_frame(AVCodecContext *avctx, void *data, bytestream2_skip(&gb, size); } - *data_size = sizeof(AVFrame); + *got_frame = 1; *(AVFrame*)data = c->pic; /* always report that the buffer was completely consumed */ -- cgit v1.2.3