diff options
Diffstat (limited to 'libavcodec/smc.c')
-rw-r--r-- | libavcodec/smc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/smc.c b/libavcodec/smc.c index d0102eaa9c..75ecd4f186 100644 --- a/libavcodec/smc.c +++ b/libavcodec/smc.c @@ -441,8 +441,10 @@ static av_cold int smc_decode_init(AVCodecContext *avctx) static int smc_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - const uint8_t *buf, int buf_size) + AVPacket *avpkt) { + const uint8_t *buf = avpkt->data; + int buf_size = avpkt->size; SmcContext *s = avctx->priv_data; s->buf = buf; |