From a927276fcc20c99f6e311fb9aa679d4ba1ba7e99 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 5 Oct 2013 01:38:47 +0200 Subject: [PATCH] avcodec/dpx: check packing Signed-off-by: Michael Niedermayer --- libavcodec/dpx.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 9609a5265b..f94926493a 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -129,6 +129,11 @@ static int decode_frame(AVCodecContext *avctx, packing = read16(&buf, endian); encoding = read16(&buf, endian); + if (packing > 1) { + avpriv_report_missing_feature(avctx, + "Unsupported packing %d\n", packing); + return AVERROR_PATCHWELCOME; + } if (encoding) { avpriv_report_missing_feature(avctx, "Unsupported encoding %d\n", encoding);