ffmpeg | branch: master | Paul B Mahol <[email protected]> | Thu Feb 11 18:09:35 2021 +0100| [d1802e263c21686f95f51dc0002bc396209e8479] | committer: Paul B Mahol
avcodec/dpx: add support for other single component 8bit files > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d1802e263c21686f95f51dc0002bc396209e8479 --- 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; _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
