summaryrefslogtreecommitdiff
path: root/libavcodec/xl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/xl.c')
-rw-r--r--libavcodec/xl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/xl.c b/libavcodec/xl.c
index a8c392a767..1cadeab561 100644
--- a/libavcodec/xl.c
+++ b/libavcodec/xl.c
@@ -41,7 +41,7 @@ static const int xl_table[32] = {
120, 121, 122, 123, 124, 125, 126, 127};
static int decode_frame(AVCodecContext *avctx,
- void *data, int *data_size,
+ void *data, int *got_frame,
AVPacket *avpkt)
{
const uint8_t *buf = avpkt->data;
@@ -122,7 +122,7 @@ static int decode_frame(AVCodecContext *avctx,
V += a->pic.linesize[2];
}
- *data_size = sizeof(AVFrame);
+ *got_frame = 1;
*(AVFrame*)data = a->pic;
return buf_size;