From df6c3f9fb3b983e790f6d6d46c5fd26d757d9093 Mon Sep 17 00:00:00 2001 From: Alex Converse Date: Tue, 18 Sep 2012 17:46:48 -0700 Subject: tiffdec: Add support for GRAY16LE. Tested with the GraphicsMagick TIFF archive and Libav generated files. --- libavcodec/tiff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/tiff.c') diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index f60c65ec7d..2a48050678 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -259,7 +259,7 @@ static int init_image(TiffContext *s) s->avctx->pix_fmt = PIX_FMT_RGB24; break; case 161: - s->avctx->pix_fmt = PIX_FMT_GRAY16BE; + s->avctx->pix_fmt = s->le ? PIX_FMT_GRAY16LE : PIX_FMT_GRAY16BE; break; case 324: s->avctx->pix_fmt = PIX_FMT_RGBA; -- cgit v1.2.3