mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/hqx: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
007498fc1a
commit
5440076303
@ -545,7 +545,7 @@ static int hqx_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
}
|
}
|
||||||
ret = av_image_check_size(ctx->width, ctx->height, 0, avctx);
|
ret = av_image_check_size(ctx->width, ctx->height, 0, avctx);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Invalid stored dimenstions %dx%d.\n",
|
av_log(avctx, AV_LOG_ERROR, "Invalid stored dimensions %dx%d.\n",
|
||||||
ctx->width, ctx->height);
|
ctx->width, ctx->height);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user