Add monochrome TIFF support
authorKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 22 Dec 2008 06:43:14 +0000 (06:43 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 22 Dec 2008 06:43:14 +0000 (06:43 +0000)
Originally committed as revision 16266 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/tiff.c

index 6b2c2ad..d7738fc 100644 (file)
@@ -220,6 +220,9 @@ static int tiff_decode_tag(TiffContext *s, const uint8_t *start, const uint8_t *
             }
         }
         switch(s->bpp){
+        case 1:
+            s->avctx->pix_fmt = PIX_FMT_MONOBLACK;
+            break;
         case 8:
             s->avctx->pix_fmt = PIX_FMT_PAL8;
             break;