From d00026d062a830211515c4e0351e5e08db9b634a Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Mon, 13 Nov 2006 11:20:50 +0000 Subject: [PATCH] Print error message for unsupported mode (RGB planar,CMYK,YCrCb) Originally committed as revision 7006 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/tiff.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 7d1ea80..423023c 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -387,6 +387,12 @@ static int tiff_decode_tag(TiffContext *s, uint8_t *start, uint8_t *buf, uint8_t case 1: s->invert = 0; break; + case 2: + case 3: + break; + default: + av_log(s->avctx, AV_LOG_ERROR, "Color mode %d is not supported\n", value); + return -1; } break; case TIFF_PAL: -- 2.7.4