Browse Source

avcodec/hnm4video: remove redundant log message

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.2-rc1
Paul B Mahol 12 years ago
parent
commit
315e3cf047
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavcodec/hnm4video.c

+ 1
- 3
libavcodec/hnm4video.c View File

@@ -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);



Loading…
Cancel
Save