[FFmpeg-cvslog] avcodec/hnm4video: remove redundant log message

Paul B Mahol git at videolan.org
Thu Nov 7 17:05:36 CET 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Nov  7 14:04:21 2013 +0000| [315e3cf047cf8151c53113f87699b3358406edfa] | committer: Paul B Mahol

avcodec/hnm4video: remove redundant log message

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=315e3cf047cf8151c53113f87699b3358406edfa
---

 libavcodec/hnm4video.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/libavcodec/hnm4video.c b/libavcodec/hnm4video.c
index d681217..1e3c0fd 100644
--- a/libavcodec/hnm4video.c
+++ b/libavcodec/hnm4video.c
@@ -359,10 +359,8 @@ static int hnm_decode_frame(AVCodecContext *avctx, void *data,
     int ret;
     uint16_t chunk_id;
 
-    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;
-    }
 
     chunk_id = AV_RL16(avpkt->data + 4);
 



More information about the ffmpeg-cvslog mailing list