Support decoding gray8a tiff images.

release/0.10
Carl Eugen Hoyos 13 years ago
parent e8df18270a
commit f746f37901
  1. 3
      libavcodec/tiff.c

@ -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;

Loading…
Cancel
Save