diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-12-06 20:25:33 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-12-07 19:44:57 +0100 |
commit | f628970e409cb3bba3150d1271a96eab47fd4233 (patch) | |
tree | 16b0f3bca8db471aeb5fd1e54a92c1ab9f56f475 /libavcodec/dpx.c | |
parent | 9c881cf9a57e6b40a29f149825819c3f446eed11 (diff) | |
download | ffmpeg-f628970e409cb3bba3150d1271a96eab47fd4233.tar.gz |
avcodec/dpx: add support for another gray10 variant
Diffstat (limited to 'libavcodec/dpx.c')
-rw-r--r-- | libavcodec/dpx.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |