summaryrefslogtreecommitdiff
path: root/libavcodec/dpx.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-12-04 21:04:05 +0100
committerPaul B Mahol <onemda@gmail.com>2018-12-04 21:05:14 +0100
commited5680f37ed30a01933c0158b21e3bb3c8acfe4a (patch)
tree88d924c03c704b1186579c52ab5b8974059727b1 /libavcodec/dpx.c
parentea68e02c6d4f1b077cc50079a1bcdafcc81afdad (diff)
avcodec/dpx: add support for 10bit gray
Diffstat (limited to 'libavcodec/dpx.c')
-rw-r--r--libavcodec/dpx.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/libavcodec/dpx.c b/libavcodec/dpx.c
index cf23bb6ba1..538a1b9943 100644
--- a/libavcodec/dpx.c
+++ b/libavcodec/dpx.c
@@ -310,6 +310,9 @@ static int decode_frame(AVCodecContext *avctx,
case 51121:
avctx->pix_fmt = AV_PIX_FMT_GBRAP12;
break;
+ case 6101:
+ avctx->pix_fmt = AV_PIX_FMT_GRAY10;
+ break;
case 6161:
avctx->pix_fmt = AV_PIX_FMT_GRAY16BE;
break;
@@ -362,12 +365,14 @@ static int decode_frame(AVCodecContext *avctx,
(uint16_t*)ptr[3]};
int shift = packing == 1 ? 22 : 20;
for (y = 0; y < avctx->width; y++) {
- *dst[2]++ = read10in32(&buf, &rgbBuffer,
- &n_datum, endian, shift);
+ if (elements >= 3)
+ *dst[2]++ = read10in32(&buf, &rgbBuffer,
+ &n_datum, endian, shift);
*dst[0]++ = read10in32(&buf, &rgbBuffer,
&n_datum, endian, shift);
- *dst[1]++ = read10in32(&buf, &rgbBuffer,
- &n_datum, endian, shift);
+ if (elements >= 2)
+ *dst[1]++ = read10in32(&buf, &rgbBuffer,
+ &n_datum, endian, shift);
if (elements == 4)
*dst[3]++ =
read10in32(&buf, &rgbBuffer,