diff options
author | Janne Grunau | 2014-07-21 08:35:32 +0200 |
---|---|---|
committer | Janne Grunau | 2014-07-21 08:35:32 +0200 |
commit | a9f3f5fadb57bae3f3ff0be69e56b2c6014f2513 (patch) | |
tree | 239599b59cd14140a79286ce59572fbeefca7ca1 /libavcodec/tiff.c | |
parent | 819bb3e81c72939ae1c1a4e5fc3dfdf3e98df074 (diff) |
Revert "tiff: support reading gray+alpha at 8 bits"
This reverts commit b31d76e45fc3c6529dd7109e721676f3ec376d00 as it
uses an unkown pixel format.
Diffstat (limited to 'libavcodec/tiff.c')
-rw-r--r-- | libavcodec/tiff.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 69d55c6208..6c72dc8293 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -262,9 +262,6 @@ 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_GRAY8A; - break; case 324: s->avctx->pix_fmt = AV_PIX_FMT_RGBA; break; |