From d1802e263c21686f95f51dc0002bc396209e8479 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 11 Feb 2021 18:09:35 +0100 Subject: [PATCH] avcodec/dpx: add support for other single component 8bit files --- libavcodec/dpx.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 702caa385e..5372e3d586 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -497,6 +497,14 @@ static int decode_frame(AVCodecContext *avctx, } switch (1000 * descriptor + 10 * bits_per_color + endian) { + case 1081: + case 1080: + case 2081: + case 2080: + case 3081: + case 3080: + case 4081: + case 4080: case 6081: case 6080: avctx->pix_fmt = AV_PIX_FMT_GRAY8;