diff options
Diffstat (limited to 'libavcodec/s302m.c')
-rw-r--r-- | libavcodec/s302m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/s302m.c b/libavcodec/s302m.c index 061f0158bb..66d25f11b4 100644 --- a/libavcodec/s302m.c +++ b/libavcodec/s302m.c @@ -93,7 +93,7 @@ static int s302m_decode_frame(AVCodecContext *avctx, void *data, /* get output buffer */ block_size = (avctx->bits_per_coded_sample + 4) / 4; frame->nb_samples = 2 * (buf_size / block_size) / avctx->channels; - 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; } |