Fix typo in v410 decoder.

pull/28/head
Carl Eugen Hoyos 13 years ago
parent c9a96ec3c7
commit d147aedb6b
  1. 4
      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");
}
}

Loading…
Cancel
Save