summaryrefslogtreecommitdiff
path: root/libavcodec/v410dec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-07-23 23:44:13 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-07-23 23:44:13 +0200
commitd147aedb6b2160477a19cc46bb7cda9d425d3e47 (patch)
tree72489b2578f328b6fd3e803ce28e294d9e58e595 /libavcodec/v410dec.c
parentc9a96ec3c7b515ed3cfaf6614ed75da03b63512e (diff)
downloadffmpeg-d147aedb6b2160477a19cc46bb7cda9d425d3e47.tar.gz
Fix typo in v410 decoder.
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 34e397979c..ba75ec417a 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");
}
}