mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 16:22:37 +00:00
Fixes ticket 1127.
I'm still looking into why bpp is getting set to 0.
This commit is contained in:
parent
99bb88c588
commit
b678dd9690
@ -266,7 +266,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 = (image->comps[0].bpp == 8) ? PIX_FMT_GRAY8 : PIX_FMT_GRAY16;
|
case 1: avctx->pix_fmt = (image->comps[0].prec == 8) ? PIX_FMT_GRAY8 : PIX_FMT_GRAY16;
|
||||||
break;
|
break;
|
||||||
case 2: avctx->pix_fmt = PIX_FMT_GRAY8A;
|
case 2: avctx->pix_fmt = PIX_FMT_GRAY8A;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user