Print error message for unsupported mode (RGB planar,CMYK,YCrCb)

Originally committed as revision 7006 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Kostya Shishkov 18 years ago
parent e2570297c0
commit d00026d062
  1. 6
      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:

Loading…
Cancel
Save