diff options
Diffstat (limited to 'libavcodec/8svx.c')
-rw-r--r-- | libavcodec/8svx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c index d33f73e039..8f0fbade42 100644 --- a/libavcodec/8svx.c +++ b/libavcodec/8svx.c @@ -136,7 +136,7 @@ static int eightsvx_decode_frame(AVCodecContext *avctx, void *data, /* get output buffer */ frame->nb_samples = buf_size * 2; - 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; } |