diff options
Diffstat (limited to 'libavcodec/targa.c')
-rw-r--r-- | libavcodec/targa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/targa.c b/libavcodec/targa.c index 027275bd2c..3bbed94dcd 100644 --- a/libavcodec/targa.c +++ b/libavcodec/targa.c @@ -95,7 +95,7 @@ static int targa_decode_rle(AVCodecContext *avctx, TargaContext *s, } static int decode_frame(AVCodecContext *avctx, - void *data, int *data_size, + void *data, int *got_frame, AVPacket *avpkt) { TargaContext * const s = avctx->priv_data; @@ -233,7 +233,7 @@ static int decode_frame(AVCodecContext *avctx, } *picture = s->picture; - *data_size = sizeof(AVPicture); + *got_frame = 1; return avpkt->size; } |