Commit 315e3cf0 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/hnm4video: remove redundant log message

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent cbe84b4f
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment