summaryrefslogtreecommitdiff
path: root/libavcodec/cpia.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-12-05 18:24:43 +0000
committerPaul B Mahol <onemda@gmail.com>2012-12-05 18:24:43 +0000
commit4012cd6c4f19f09cac86c9b8c9738f27bb691764 (patch)
tree605a9342eb74f30c32ce1a772880612e7066d930 /libavcodec/cpia.c
parent835fd779a46d14d6999618546a9833b3f2af2326 (diff)
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/cpia.c')
-rw-r--r--libavcodec/cpia.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cpia.c b/libavcodec/cpia.c
index 26e067a5cc..f741eb9e5e 100644
--- a/libavcodec/cpia.c
+++ b/libavcodec/cpia.c
@@ -46,8 +46,8 @@ typedef struct {
} CpiaContext;
-static int cpia_decode_frame(AVCodecContext* avctx,
- void* data, int* data_size, AVPacket* avpkt)
+static int cpia_decode_frame(AVCodecContext *avctx,
+ void *data, int *got_frame, AVPacket* avpkt)
{
CpiaContext* const cpia = avctx->priv_data;
int i,j,ret;
@@ -183,7 +183,7 @@ static int cpia_decode_frame(AVCodecContext* avctx,
}
}
- *data_size = sizeof(AVFrame);
+ *got_frame = 1;
*(AVFrame*) data = *frame;
return avpkt->size;