[FFmpeg-cvslog] Fix typo in v410 decoder.

Carl Eugen Hoyos git at videolan.org
Thu Jul 26 21:55:15 CEST 2012


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Jul 23 18:45:17 2012 -0400| [92566540c3ce554b656b4d99b9bcd7870d8a41e0] | committer: Kostya Shishkov

Fix typo in v410 decoder.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>
Signed-off-by: Kostya Shishkov <kostya.shishkov at gmail.com>

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

 libavcodec/v410dec.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/v410dec.c b/libavcodec/v410dec.c
index d7660ee..93545ab 100644
--- a/libavcodec/v410dec.c
+++ b/libavcodec/v410dec.c
@@ -30,10 +30,10 @@ static av_cold int v410_decode_init(AVCodecContext *avctx)
 
     if (avctx->width & 1) {
         if (avctx->err_recognition & AV_EF_EXPLODE) {
-            av_log(avctx, AV_LOG_ERROR, "v410 requires width to be even, continuing anyway.\n");
+            av_log(avctx, AV_LOG_ERROR, "v410 requires width to be even.\n");
             return AVERROR_INVALIDDATA;
         } else {
-            av_log(avctx, AV_LOG_WARNING, "v410 requires width to be even.\n");
+            av_log(avctx, AV_LOG_WARNING, "v410 requires width to be even, continuing anyway.\n");
         }
     }
 



More information about the ffmpeg-cvslog mailing list