From f628970e409cb3bba3150d1271a96eab47fd4233 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 6 Dec 2018 20:25:33 +0100 Subject: [PATCH] avcodec/dpx: add support for another gray10 variant --- libavcodec/dpx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c index 31d8331068..cfe60aaaa1 100644 --- a/libavcodec/dpx.c +++ b/libavcodec/dpx.c @@ -323,6 +323,7 @@ static int decode_frame(AVCodecContext *avctx, case 51121: avctx->pix_fmt = AV_PIX_FMT_GBRAP12; break; + case 6100: case 6101: avctx->pix_fmt = AV_PIX_FMT_GRAY10; break;