mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-25 08:43:16 +00:00
Simplify setting colour space for mono* when encoding tiff.
This commit is contained in:
parent
e7b4337777
commit
a5a90fa577
@ -272,14 +272,14 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
|
|||||||
avctx->bits_per_coded_sample = 0x28;
|
avctx->bits_per_coded_sample = 0x28;
|
||||||
case PIX_FMT_GRAY8A:
|
case PIX_FMT_GRAY8A:
|
||||||
case PIX_FMT_GRAY16LE:
|
case PIX_FMT_GRAY16LE:
|
||||||
|
case PIX_FMT_MONOBLACK:
|
||||||
s->photometric_interpretation = 1;
|
s->photometric_interpretation = 1;
|
||||||
break;
|
break;
|
||||||
case PIX_FMT_PAL8:
|
case PIX_FMT_PAL8:
|
||||||
s->photometric_interpretation = 3;
|
s->photometric_interpretation = 3;
|
||||||
break;
|
break;
|
||||||
case PIX_FMT_MONOBLACK:
|
|
||||||
case PIX_FMT_MONOWHITE:
|
case PIX_FMT_MONOWHITE:
|
||||||
s->photometric_interpretation = avctx->pix_fmt == PIX_FMT_MONOBLACK;
|
s->photometric_interpretation = 0;
|
||||||
break;
|
break;
|
||||||
case PIX_FMT_YUV420P:
|
case PIX_FMT_YUV420P:
|
||||||
case PIX_FMT_YUV422P:
|
case PIX_FMT_YUV422P:
|
||||||
|
Loading…
Reference in New Issue
Block a user