diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-02-27 08:38:14 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-02-27 08:38:14 +0000 |
commit | 5440076303dfc4bca45a4ad93be1930b69f56ab6 (patch) | |
tree | 4952a0ebbd70cbc9647e2fbc7691af63b4773a7e /libavcodec | |
parent | 007498fc1a639ecee2cda1892cbcff66c7c8c951 (diff) | |
download | ffmpeg-5440076303dfc4bca45a4ad93be1930b69f56ab6.tar.gz |
avcodec/hqx: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/hqx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hqx.c b/libavcodec/hqx.c index 625c0abfeb..9b8b1ada95 100644 --- a/libavcodec/hqx.c +++ b/libavcodec/hqx.c @@ -545,7 +545,7 @@ static int hqx_decode_frame(AVCodecContext *avctx, void *data, } ret = av_image_check_size(ctx->width, ctx->height, 0, avctx); 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); return AVERROR_INVALIDDATA; } |