From 60cbd6ad84de0931314030b81df87b69d6196587 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 20 Jul 2014 02:34:19 -0400 Subject: tiff: support reading gray+alpha at 8 bits Signed-off-by: Vittorio Giovara --- libavcodec/tiff.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavcodec/tiff.c') diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 7341b3fb33..2aff45ad7d 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -262,6 +262,9 @@ static int init_image(TiffContext *s, AVFrame *frame) case 161: s->avctx->pix_fmt = s->le ? AV_PIX_FMT_GRAY16LE : AV_PIX_FMT_GRAY16BE; break; + case 162: + s->avctx->pix_fmt = AV_PIX_FMT_YA8; + break; case 322: s->avctx->pix_fmt = s->le ? AV_PIX_FMT_YA16LE : AV_PIX_FMT_YA16BE; break; -- cgit v1.2.3