mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/hqx: remove superfluous log message
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
c3d40e305c
commit
665916ffa2
@ -580,10 +580,8 @@ static int hqx_decode_frame(AVCodecContext *avctx, void *data,
|
||||
}
|
||||
|
||||
ret = ff_get_buffer(avctx, pic, 0);
|
||||
if (ret < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
for (slice = 0; slice < 16; slice++) {
|
||||
if (slice_off[slice] < HQX_HEADER_SIZE ||
|
||||
|
Loading…
Reference in New Issue
Block a user