Commit 92566540 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos Committed by Kostya Shishkov

Fix typo in v410 decoder.

Signed-off-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: 's avatarKostya Shishkov <kostya.shishkov@gmail.com>
parent b5c8aa74
......@@ -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");
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment