From 9521236881cbb04c6e6c75d01cd5be5c25085b33 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 7 Nov 2013 14:55:35 +0000 Subject: avcodec/libfdk-aacdec: remove redundant log messages Signed-off-by: Paul B Mahol --- libavcodec/libfdk-aacdec.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libavcodec/libfdk-aacdec.c') diff --git a/libavcodec/libfdk-aacdec.c b/libavcodec/libfdk-aacdec.c index bc3802c5c3..c833a98a82 100644 --- a/libavcodec/libfdk-aacdec.c +++ b/libavcodec/libfdk-aacdec.c @@ -229,10 +229,8 @@ static int fdk_aac_decode_frame(AVCodecContext *avctx, void *data, if (s->initialized) { frame->nb_samples = avctx->frame_size; - if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) { - av_log(avctx, AV_LOG_ERROR, "ff_get_buffer() failed\n"); + if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) return ret; - } buf = frame->extended_data[0]; buf_size = avctx->channels * frame->nb_samples * av_get_bytes_per_sample(avctx->sample_fmt); @@ -264,10 +262,8 @@ static int fdk_aac_decode_frame(AVCodecContext *avctx, void *data, if (tmpptr) { frame->nb_samples = avctx->frame_size; - if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) { - av_log(avctx, AV_LOG_ERROR, "ff_get_buffer() failed\n"); + if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) goto end; - } memcpy(frame->extended_data[0], tmpptr, avctx->channels * avctx->frame_size * av_get_bytes_per_sample(avctx->sample_fmt)); -- cgit v1.2.3