summaryrefslogtreecommitdiff
path: root/libavcodec/v410dec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-07-23 18:45:17 -0400
committerKostya Shishkov <kostya.shishkov@gmail.com>2012-07-26 10:08:49 +0200
commit92566540c3ce554b656b4d99b9bcd7870d8a41e0 (patch)
tree178fb9307411cd0e007807d91c63d496a28693c4 /libavcodec/v410dec.c
parentb5c8aa745ead1b9a561ced99179291bb94048c84 (diff)
Fix typo in v410 decoder.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
Diffstat (limited to 'libavcodec/v410dec.c')
-rw-r--r--libavcodec/v410dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/v410dec.c b/libavcodec/v410dec.c
index d7660ee4fb..93545ab102 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");
}
}