diff options
Diffstat (limited to 'libavcodec/8svx.c')
-rw-r--r-- | libavcodec/8svx.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c index 8f0fbade42..82fda6f449 100644 --- a/libavcodec/8svx.c +++ b/libavcodec/8svx.c @@ -136,10 +136,8 @@ 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)) < 0) { - av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); + if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) return ret; - } for (ch = 0; ch < avctx->channels; ch++) { delta_decode(frame->data[ch], &esc->data[ch][esc->data_idx], |