Commit f746f379 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Support decoding gray8a tiff images.

parent e8df1827
......@@ -296,6 +296,9 @@ static int init_image(TiffContext *s)
case 161:
s->avctx->pix_fmt = PIX_FMT_GRAY16BE;
break;
case 162:
s->avctx->pix_fmt = PIX_FMT_GRAY8A;
break;
case 324:
s->avctx->pix_fmt = PIX_FMT_RGBA;
break;
......
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