diff options
author | James Almer <jamrial@gmail.com> | 2015-11-25 19:22:19 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-11-25 19:24:24 -0300 |
commit | 3885ef0c6c9c6d1501766341c6b44d6b169c20dd (patch) | |
tree | 592a037958f0d9fe5cdaf32a36d594f96fbb7b85 | |
parent | 56ff563f3bbe96e88e2c4eedf8765c77f77033eb (diff) | |
download | ffmpeg-3885ef0c6c9c6d1501766341c6b44d6b169c20dd.tar.gz |
avcodec/mjpegdec: fix typo on a warning
-rw-r--r-- | libavcodec/mjpegdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 46c416a4c6..cfc59ac3ad 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -282,7 +282,7 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s) } if (s->avctx->bits_per_raw_sample != bits) { - av_log(s->avctx, AV_LOG_INFO, "Changeing bps to %d\n", bits); + av_log(s->avctx, AV_LOG_INFO, "Changing bps to %d\n", bits); s->avctx->bits_per_raw_sample = bits; init_idct(s->avctx); } |