diff options
Diffstat (limited to 'libavcodec/svq1dec.c')
-rw-r--r-- | libavcodec/svq1dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/svq1dec.c b/libavcodec/svq1dec.c index 27e9606f88..efe23f1e35 100644 --- a/libavcodec/svq1dec.c +++ b/libavcodec/svq1dec.c @@ -583,7 +583,7 @@ static int svq1_decode_frame_header(GetBitContext *bitbuf, MpegEncContext *s) } static int svq1_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; @@ -707,7 +707,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, void *data, ff_MPV_frame_end(s); - *data_size = sizeof(AVFrame); + *got_frame = 1; result = buf_size; err: |