diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index b0ccbac..cdb06df 100644
|
a
|
b
|
static int tiff_decode_tag(TiffContext *s, const uint8_t *start, const uint8_t *
|
| 485 | 485 | return -1; |
| 486 | 486 | } |
| 487 | 487 | break; |
| | 488 | case TIFF_TILE_LENGTH: |
| | 489 | av_log(s->avctx, AV_LOG_ERROR, "Tiled segmentation is not supported\n"); |
| | 490 | return -1; |
| | 491 | break; |
| 488 | 492 | case TIFF_PREDICTOR: |
| 489 | 493 | s->predictor = value; |
| 490 | 494 | break; |
diff --git a/libavcodec/tiff.h b/libavcodec/tiff.h
index d5fad42..4bbe46c 100644
|
a
|
b
|
enum TiffTags{
|
| 56 | 56 | TIFF_SOFTWARE_NAME = 0x131, |
| 57 | 57 | TIFF_PREDICTOR = 0x13D, |
| 58 | 58 | TIFF_PAL = 0x140, |
| | 59 | TIFF_TILE_LENGTH = 0x143, |
| 59 | 60 | TIFF_YCBCR_COEFFICIENTS = 0x211, |
| 60 | 61 | TIFF_YCBCR_SUBSAMPLING = 0x212, |
| 61 | 62 | TIFF_YCBCR_POSITIONING = 0x213, |