diff options
Diffstat (limited to 'libavcodec/vima.c')
-rw-r--r-- | libavcodec/vima.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vima.c b/libavcodec/vima.c index 604e0ce110..658c6ce700 100644 --- a/libavcodec/vima.c +++ b/libavcodec/vima.c @@ -170,7 +170,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, } frame->nb_samples = samples; - if ((ret = ff_get_buffer(avctx, frame)) < 0) { + if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) { av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); return ret; } |