Commit dd55adb1 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Support reading 64bit dpx images.

Reviewed-by: Jean First
parent 0b1f20e2
......@@ -140,11 +140,11 @@ static int decode_frame(AVCodecContext *avctx,
case 12:
case 16:
if (endian) {
avctx->pix_fmt = PIX_FMT_RGB48BE;
avctx->pix_fmt = elements == 4 ? PIX_FMT_RGBA64BE : PIX_FMT_RGB48BE;
} else {
avctx->pix_fmt = PIX_FMT_RGB48LE;
avctx->pix_fmt = elements == 4 ? PIX_FMT_RGBA64LE : PIX_FMT_RGB48LE;
}
target_packet_size = 6;
target_packet_size =
source_packet_size = elements * 2;
break;
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment