From 62078f25ee9a012b09eeea0940f3290cea4a653b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 7 Oct 2013 09:10:00 +0000 Subject: [PATCH] avcodec/dpx: return different error code for unsupported depths Also give better message in such cases. Signed-off-by: Paul B Mahol --- libavcodec/dpx.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 47906d72c2..1cfc258577 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -193,8 +193,12 @@ static int decode_frame(AVCodecContext *avctx, } total_size = 2 * avctx->width * avctx->height * elements; break; + case 1: + case 32: + case 64: + avpriv_report_missing_feature(avctx, "Depth %d", bits_per_color); + return AVERROR_PATCHWELCOME; default: - av_log(avctx, AV_LOG_ERROR, "Unsupported color depth : %d\n", bits_per_color); return AVERROR_INVALIDDATA; } -- 2.11.0