From 3e99b377fc8bf19d8b8f0116554da403bba5ea91 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 8 Apr 2016 09:40:32 +0200 Subject: [PATCH] avcodec: remove "get_buffer() failed" message It is already provided by ff_get_buffer(). Signed-off-by: Paul B Mahol --- libavcodec/dss_sp.c | 4 +--- libavcodec/qdrw.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/libavcodec/dss_sp.c b/libavcodec/dss_sp.c index 7cf84899fc..ddea48304f 100644 --- a/libavcodec/dss_sp.c +++ b/libavcodec/dss_sp.c @@ -761,10 +761,8 @@ static int dss_sp_decode_frame(AVCodecContext *avctx, void *data, } frame->nb_samples = DSS_SP_SAMPLE_COUNT; - 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; - } out = (int16_t *)frame->data[0]; diff --git a/libavcodec/qdrw.c b/libavcodec/qdrw.c index 0a31b41660..828cfea3fd 100644 --- a/libavcodec/qdrw.c +++ b/libavcodec/qdrw.c @@ -281,10 +281,8 @@ static int decode_frame(AVCodecContext *avctx, avpriv_request_sample(avctx, "Pack type %d", pack_type); return AVERROR_PATCHWELCOME; } - if ((ret = ff_get_buffer(avctx, p, 0)) < 0) { - av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); + if ((ret = ff_get_buffer(avctx, p, 0)) < 0) return ret; - } /* jump to data */ bytestream2_skip(&gbc, 30);