Fix typo in v410 decoder.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Mon, 23 Jul 2012 22:45:17 +0000 (18:45 -0400)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Thu, 26 Jul 2012 08:08:49 +0000 (10:08 +0200)
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
libavcodec/v410dec.c

index d7660ee..93545ab 100644 (file)
@@ -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");
         }
     }