Commit df548c59 authored by Paul B Mahol's avatar Paul B Mahol

tiffenc: PIX_FMT_GRAY16LE support

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 1806858f
...@@ -258,6 +258,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -258,6 +258,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
break; break;
case PIX_FMT_GRAY8: case PIX_FMT_GRAY8:
avctx->bits_per_coded_sample = 0x28; avctx->bits_per_coded_sample = 0x28;
case PIX_FMT_GRAY16LE:
s->photometric_interpretation = 1; s->photometric_interpretation = 1;
break; break;
case PIX_FMT_PAL8: case PIX_FMT_PAL8:
...@@ -486,7 +487,7 @@ AVCodec ff_tiff_encoder = { ...@@ -486,7 +487,7 @@ AVCodec ff_tiff_encoder = {
.priv_data_size = sizeof(TiffEncoderContext), .priv_data_size = sizeof(TiffEncoderContext),
.encode2 = encode_frame, .encode2 = encode_frame,
.pix_fmts = (const enum PixelFormat[]) { .pix_fmts = (const enum PixelFormat[]) {
PIX_FMT_RGB24, PIX_FMT_PAL8, PIX_FMT_GRAY8, PIX_FMT_RGB24, PIX_FMT_PAL8, PIX_FMT_GRAY8, PIX_FMT_GRAY16LE,
PIX_FMT_MONOBLACK, PIX_FMT_MONOWHITE, PIX_FMT_MONOBLACK, PIX_FMT_MONOWHITE,
PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P, PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P,
PIX_FMT_YUV410P, PIX_FMT_YUV411P, PIX_FMT_RGB48LE, PIX_FMT_YUV410P, PIX_FMT_YUV411P, PIX_FMT_RGB48LE,
......
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