v410dec: Implement explode mode support
Try and decode broken files, but still fail if explode mode is enabled. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
parent
6c8fdfc5e5
commit
d04c5293ce
@ -29,8 +29,12 @@ static av_cold int v410_decode_init(AVCodecContext *avctx)
|
|||||||
avctx->bits_per_raw_sample = 10;
|
avctx->bits_per_raw_sample = 10;
|
||||||
|
|
||||||
if (avctx->width & 1) {
|
if (avctx->width & 1) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "v410 requires even width.\n");
|
if (avctx->err_recognition & AV_EF_EXPLODE) {
|
||||||
return AVERROR_INVALIDDATA;
|
av_log(avctx, AV_LOG_ERROR, "v410 requires width to be even, continuing anyway.\n");
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
} else {
|
||||||
|
av_log(avctx, AV_LOG_WARNING, "v410 requires width to be even.\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
avctx->coded_frame = avcodec_alloc_frame();
|
avctx->coded_frame = avcodec_alloc_frame();
|
||||||
|
Loading…
Reference in New Issue
Block a user