mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
Supoort decoding of gray16 images with libopenjpeg.
This commit is contained in:
parent
6a3cc21242
commit
f0d6828dbe
@ -258,7 +258,7 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
|
|||||||
avcodec_set_dimensions(avctx, width, height);
|
avcodec_set_dimensions(avctx, width, height);
|
||||||
|
|
||||||
switch (image->numcomps) {
|
switch (image->numcomps) {
|
||||||
case 1: avctx->pix_fmt = PIX_FMT_GRAY8;
|
case 1: avctx->pix_fmt = (image->comps[0].bpp == 8) ? PIX_FMT_GRAY8 : PIX_FMT_GRAY16;
|
||||||
break;
|
break;
|
||||||
case 3: avctx->pix_fmt = check_image_attributes(avctx, image);
|
case 3: avctx->pix_fmt = check_image_attributes(avctx, image);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user