[FFmpeg-cvslog] avcodec/hqx: fix typo

Paul B Mahol git at videolan.org
Fri Feb 27 09:38:56 CET 2015


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Feb 27 08:38:14 2015 +0000| [5440076303dfc4bca45a4ad93be1930b69f56ab6] | committer: Paul B Mahol

avcodec/hqx: fix typo

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5440076303dfc4bca45a4ad93be1930b69f56ab6
---

 libavcodec/hqx.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/hqx.c b/libavcodec/hqx.c
index 625c0ab..9b8b1ad 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;
     }



More information about the ffmpeg-cvslog mailing list