Commit a9b046fb authored by Justin Ruggles's avatar Justin Ruggles

tiff: use a better name and enum values for PhotometricInterpretation

Also add additional known values and log as missing features.
parent fdbe18b7
...@@ -51,7 +51,7 @@ typedef struct TiffContext { ...@@ -51,7 +51,7 @@ typedef struct TiffContext {
int palette_is_set; int palette_is_set;
int le; int le;
enum TiffCompr compr; enum TiffCompr compr;
int invert; enum TiffPhotometric photometric;
int fax_opts; int fax_opts;
int predictor; int predictor;
int fill_order; int fill_order;
...@@ -447,20 +447,31 @@ static int tiff_decode_tag(TiffContext *s) ...@@ -447,20 +447,31 @@ static int tiff_decode_tag(TiffContext *s)
case TIFF_PREDICTOR: case TIFF_PREDICTOR:
s->predictor = value; s->predictor = value;
break; break;
case TIFF_INVERT: case TIFF_PHOTOMETRIC:
switch (value) { switch (value) {
case 0: case TIFF_PHOTOMETRIC_WHITE_IS_ZERO:
s->invert = 1; case TIFF_PHOTOMETRIC_BLACK_IS_ZERO:
break; case TIFF_PHOTOMETRIC_RGB:
case 1: case TIFF_PHOTOMETRIC_PALETTE:
s->invert = 0; s->photometric = value;
break;
case 2:
case 3:
break; break;
case TIFF_PHOTOMETRIC_ALPHA_MASK:
case TIFF_PHOTOMETRIC_SEPARATED:
case TIFF_PHOTOMETRIC_YCBCR:
case TIFF_PHOTOMETRIC_CIE_LAB:
case TIFF_PHOTOMETRIC_ICC_LAB:
case TIFF_PHOTOMETRIC_ITU_LAB:
case TIFF_PHOTOMETRIC_CFA:
case TIFF_PHOTOMETRIC_LOG_L:
case TIFF_PHOTOMETRIC_LOG_LUV:
case TIFF_PHOTOMETRIC_LINEAR_RAW:
avpriv_report_missing_feature(s->avctx,
"PhotometricInterpretation 0x%04X",
value);
return AVERROR_PATCHWELCOME;
default: default:
av_log(s->avctx, AV_LOG_ERROR, "Color mode %d is not supported\n", av_log(s->avctx, AV_LOG_ERROR, "PhotometricInterpretation %u is "
value); "unknown\n", value);
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
break; break;
...@@ -546,10 +557,10 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -546,10 +557,10 @@ static int decode_frame(AVCodecContext *avctx,
av_log(avctx, AV_LOG_ERROR, "TIFF header not found\n"); av_log(avctx, AV_LOG_ERROR, "TIFF header not found\n");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
s->le = le; s->le = le;
s->invert = 0; s->photometric = TIFF_PHOTOMETRIC_NONE;
s->compr = TIFF_RAW; s->compr = TIFF_RAW;
s->fill_order = 0; s->fill_order = 0;
// As TIFF 6.0 specification puts it "An arbitrary but carefully chosen number // As TIFF 6.0 specification puts it "An arbitrary but carefully chosen number
// that further identifies the file as a TIFF file" // that further identifies the file as a TIFF file"
if (tget_short(&s->gb, le) != 42) { if (tget_short(&s->gb, le) != 42) {
...@@ -633,7 +644,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -633,7 +644,7 @@ static int decode_frame(AVCodecContext *avctx,
} }
} }
if (s->invert) { if (s->photometric == TIFF_PHOTOMETRIC_WHITE_IS_ZERO) {
dst = p->data[0]; dst = p->data[0];
for (i = 0; i < s->height; i++) { for (i = 0; i < s->height; i++) {
for (j = 0; j < p->linesize[0]; j++) for (j = 0; j < p->linesize[0]; j++)
......
...@@ -37,7 +37,7 @@ enum TiffTags { ...@@ -37,7 +37,7 @@ enum TiffTags {
TIFF_HEIGHT, TIFF_HEIGHT,
TIFF_BPP, TIFF_BPP,
TIFF_COMPR, TIFF_COMPR,
TIFF_INVERT = 0x106, TIFF_PHOTOMETRIC = 0x106,
TIFF_FILL_ORDER = 0x10A, TIFF_FILL_ORDER = 0x10A,
TIFF_STRIP_OFFS = 0x111, TIFF_STRIP_OFFS = 0x111,
TIFF_SAMPLES_PER_PIXEL = 0x115, TIFF_SAMPLES_PER_PIXEL = 0x115,
...@@ -82,6 +82,24 @@ enum TiffTypes { ...@@ -82,6 +82,24 @@ enum TiffTypes {
TIFF_RATIONAL, TIFF_RATIONAL,
}; };
enum TiffPhotometric {
TIFF_PHOTOMETRIC_NONE = -1,
TIFF_PHOTOMETRIC_WHITE_IS_ZERO, /* mono or grayscale, 0 is white */
TIFF_PHOTOMETRIC_BLACK_IS_ZERO, /* mono or grayscale, 0 is black */
TIFF_PHOTOMETRIC_RGB, /* RGB or RGBA*/
TIFF_PHOTOMETRIC_PALETTE, /* Uses a palette */
TIFF_PHOTOMETRIC_ALPHA_MASK, /* Transparency mask */
TIFF_PHOTOMETRIC_SEPARATED, /* CMYK or some other ink set */
TIFF_PHOTOMETRIC_YCBCR, /* YCbCr */
TIFF_PHOTOMETRIC_CIE_LAB = 8, /* 1976 CIE L*a*b* */
TIFF_PHOTOMETRIC_ICC_LAB, /* ICC L*a*b* */
TIFF_PHOTOMETRIC_ITU_LAB, /* ITU L*a*b* */
TIFF_PHOTOMETRIC_CFA = 32803, /* Color Filter Array (DNG) */
TIFF_PHOTOMETRIC_LOG_L = 32844, /* CIE Log2(L) */
TIFF_PHOTOMETRIC_LOG_LUV, /* CIE Log L*u*v* */
TIFF_PHOTOMETRIC_LINEAR_RAW = 34892, /* Linear Raw (DNG) */
};
/** sizes of various TIFF field types (string size = 100)*/ /** sizes of various TIFF field types (string size = 100)*/
static const uint8_t type_sizes[6] = { static const uint8_t type_sizes[6] = {
0, 1, 100, 2, 4, 8 0, 1, 100, 2, 4, 8
......
...@@ -56,7 +56,7 @@ typedef struct TiffEncoderContext { ...@@ -56,7 +56,7 @@ typedef struct TiffEncoderContext {
unsigned int bpp; ///< bits per pixel unsigned int bpp; ///< bits per pixel
int compr; ///< compression level int compr; ///< compression level
int bpp_tab_size; ///< bpp_tab size int bpp_tab_size; ///< bpp_tab size
int photometric_interpretation; ///< photometric interpretation enum TiffPhotometric photometric_interpretation; ///< photometric interpretation
int strips; ///< number of strips int strips; ///< number of strips
int rps; ///< row per strip int rps; ///< row per strip
uint8_t entries[TIFF_MAX_ENTRY * 12]; ///< entries in header uint8_t entries[TIFF_MAX_ENTRY * 12]; ///< entries in header
...@@ -237,23 +237,23 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -237,23 +237,23 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
pfd = av_pix_fmt_desc_get(avctx->pix_fmt); pfd = av_pix_fmt_desc_get(avctx->pix_fmt);
s->bpp = av_get_bits_per_pixel(pfd); s->bpp = av_get_bits_per_pixel(pfd);
if (pfd->flags & AV_PIX_FMT_FLAG_PAL) if (pfd->flags & AV_PIX_FMT_FLAG_PAL)
s->photometric_interpretation = 3; s->photometric_interpretation = TIFF_PHOTOMETRIC_PALETTE;
else if (pfd->flags & AV_PIX_FMT_FLAG_RGB) else if (pfd->flags & AV_PIX_FMT_FLAG_RGB)
s->photometric_interpretation = 2; s->photometric_interpretation = TIFF_PHOTOMETRIC_RGB;
else else
s->photometric_interpretation = 1; s->photometric_interpretation = TIFF_PHOTOMETRIC_BLACK_IS_ZERO;
s->bpp_tab_size = pfd->nb_components; s->bpp_tab_size = pfd->nb_components;
for (i = 0; i < s->bpp_tab_size; i++) for (i = 0; i < s->bpp_tab_size; i++)
bpp_tab[i] = s->bpp / s->bpp_tab_size; bpp_tab[i] = s->bpp / s->bpp_tab_size;
break; break;
case AV_PIX_FMT_MONOBLACK: case AV_PIX_FMT_MONOBLACK:
s->bpp = 1; s->bpp = 1;
s->photometric_interpretation = 1; s->photometric_interpretation = TIFF_PHOTOMETRIC_BLACK_IS_ZERO;
s->bpp_tab_size = 0; s->bpp_tab_size = 0;
break; break;
case AV_PIX_FMT_MONOWHITE: case AV_PIX_FMT_MONOWHITE:
s->bpp = 1; s->bpp = 1;
s->photometric_interpretation = 0; s->photometric_interpretation = TIFF_PHOTOMETRIC_WHITE_IS_ZERO;
s->bpp_tab_size = 0; s->bpp_tab_size = 0;
break; break;
case AV_PIX_FMT_YUV420P: case AV_PIX_FMT_YUV420P:
...@@ -262,7 +262,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -262,7 +262,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
case AV_PIX_FMT_YUV410P: case AV_PIX_FMT_YUV410P:
case AV_PIX_FMT_YUV411P: case AV_PIX_FMT_YUV411P:
av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &shift_h, &shift_v); av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &shift_h, &shift_v);
s->photometric_interpretation = 6; s->photometric_interpretation = TIFF_PHOTOMETRIC_YCBCR;
s->bpp = 8 + (16 >> (shift_h + shift_v)); s->bpp = 8 + (16 >> (shift_h + shift_v));
s->subsampling[0] = 1 << shift_h; s->subsampling[0] = 1 << shift_h;
s->subsampling[1] = 1 << shift_v; s->subsampling[1] = 1 << shift_v;
...@@ -410,9 +410,9 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -410,9 +410,9 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
if (s->bpp_tab_size) if (s->bpp_tab_size)
add_entry(s, TIFF_BPP, TIFF_SHORT, s->bpp_tab_size, bpp_tab); add_entry(s, TIFF_BPP, TIFF_SHORT, s->bpp_tab_size, bpp_tab);
add_entry1(s, TIFF_COMPR, TIFF_SHORT, s->compr); add_entry1(s, TIFF_COMPR, TIFF_SHORT, s->compr);
add_entry1(s, TIFF_INVERT, TIFF_SHORT, s->photometric_interpretation); add_entry1(s, TIFF_PHOTOMETRIC, TIFF_SHORT, s->photometric_interpretation);
add_entry(s, TIFF_STRIP_OFFS, TIFF_LONG, strips, strip_offsets); add_entry(s, TIFF_STRIP_OFFS, TIFF_LONG, strips, strip_offsets);
if (s->bpp_tab_size) if (s->bpp_tab_size)
add_entry1(s, TIFF_SAMPLES_PER_PIXEL, TIFF_SHORT, s->bpp_tab_size); add_entry1(s, TIFF_SAMPLES_PER_PIXEL, TIFF_SHORT, s->bpp_tab_size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment