]> git.sesse.net Git - ffmpeg/blob - libavcodec/tiffenc.c
mdec: set color_range
[ffmpeg] / libavcodec / tiffenc.c
1 /*
2  * TIFF image encoder
3  * Copyright (c) 2007 Bartlomiej Wolowiec
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * TIFF image encoder
25  * @author Bartlomiej Wolowiec
26  */
27
28 #include "config.h"
29 #if CONFIG_ZLIB
30 #include <zlib.h>
31 #endif
32
33 #include "libavutil/log.h"
34 #include "libavutil/opt.h"
35 #include "libavutil/pixdesc.h"
36 #include "avcodec.h"
37 #include "bytestream.h"
38 #include "lzw.h"
39 #include "put_bits.h"
40 #include "rle.h"
41 #include "tiff.h"
42
43 #define TIFF_MAX_ENTRY 32
44
45 /** sizes of various TIFF field types (string size = 1)*/
46 static const uint8_t type_sizes2[6] = {
47     0, 1, 1, 2, 4, 8
48 };
49
50 typedef struct TiffEncoderContext {
51     AVClass *class;                         ///< for private options
52     AVCodecContext *avctx;
53
54     int width;                              ///< picture width
55     int height;                             ///< picture height
56     unsigned int bpp;                       ///< bits per pixel
57     int compr;                              ///< compression level
58     int bpp_tab_size;                       ///< bpp_tab size
59     int photometric_interpretation;         ///< photometric interpretation
60     int strips;                             ///< number of strips
61     int rps;                                ///< row per strip
62     uint8_t entries[TIFF_MAX_ENTRY * 12];   ///< entries in header
63     int num_entries;                        ///< number of entries
64     uint8_t **buf;                          ///< actual position in buffer
65     uint8_t *buf_start;                     ///< pointer to first byte in buffer
66     int buf_size;                           ///< buffer size
67     uint16_t subsampling[2];                ///< YUV subsampling factors
68     struct LZWEncodeState *lzws;            ///< LZW encode state
69 } TiffEncoderContext;
70
71 /**
72  * Check free space in buffer
73  * @param s Tiff context
74  * @param need Needed bytes
75  * @return 0 - ok, 1 - no free space
76  */
77 static inline int check_size(TiffEncoderContext *s, uint64_t need)
78 {
79     if (s->buf_size < *s->buf - s->buf_start + need) {
80         *s->buf = s->buf_start + s->buf_size + 1;
81         av_log(s->avctx, AV_LOG_ERROR, "Buffer is too small\n");
82         return 1;
83     }
84     return 0;
85 }
86
87 /**
88  * Put n values to buffer
89  *
90  * @param p Pointer to pointer to output buffer
91  * @param n Number of values
92  * @param val Pointer to values
93  * @param type Type of values
94  * @param flip =0 - normal copy, >0 - flip
95  */
96 static void tnput(uint8_t **p, int n, const uint8_t *val, enum TiffTypes type,
97                   int flip)
98 {
99     int i;
100 #if HAVE_BIGENDIAN
101     flip ^= ((int[]) { 0, 0, 0, 1, 3, 3 })[type];
102 #endif
103     for (i = 0; i < n * type_sizes2[type]; i++)
104         *(*p)++ = val[i ^ flip];
105 }
106
107 /**
108  * Add entry to directory in tiff header.
109  * @param s Tiff context
110  * @param tag Tag that identifies the entry
111  * @param type Entry type
112  * @param count The number of values
113  * @param ptr_val Pointer to values
114  */
115 static void add_entry(TiffEncoderContext *s, enum TiffTags tag,
116                       enum TiffTypes type, int count, const void *ptr_val)
117 {
118     uint8_t *entries_ptr = s->entries + 12 * s->num_entries;
119
120     assert(s->num_entries < TIFF_MAX_ENTRY);
121
122     bytestream_put_le16(&entries_ptr, tag);
123     bytestream_put_le16(&entries_ptr, type);
124     bytestream_put_le32(&entries_ptr, count);
125
126     if (type_sizes[type] * count <= 4) {
127         tnput(&entries_ptr, count, ptr_val, type, 0);
128     } else {
129         bytestream_put_le32(&entries_ptr, *s->buf - s->buf_start);
130         check_size(s, count * type_sizes2[type]);
131         tnput(s->buf, count, ptr_val, type, 0);
132     }
133
134     s->num_entries++;
135 }
136
137 static void add_entry1(TiffEncoderContext *s,
138                        enum TiffTags tag, enum TiffTypes type, int val)
139 {
140     uint16_t w  = val;
141     uint32_t dw = val;
142     add_entry(s, tag, type, 1, type == TIFF_SHORT ? (void *)&w : (void *)&dw);
143 }
144
145 /**
146  * Encode one strip in tiff file
147  *
148  * @param s Tiff context
149  * @param src Input buffer
150  * @param dst Output buffer
151  * @param n Size of input buffer
152  * @param compr Compression method
153  * @return Number of output bytes. If an output error is encountered, -1 returned
154  */
155 static int encode_strip(TiffEncoderContext *s, const int8_t *src,
156                         uint8_t *dst, int n, int compr)
157 {
158     switch (compr) {
159 #if CONFIG_ZLIB
160     case TIFF_DEFLATE:
161     case TIFF_ADOBE_DEFLATE:
162     {
163         unsigned long zlen = s->buf_size - (*s->buf - s->buf_start);
164         if (compress(dst, &zlen, src, n) != Z_OK) {
165             av_log(s->avctx, AV_LOG_ERROR, "Compressing failed\n");
166             return -1;
167         }
168         return zlen;
169     }
170 #endif
171     case TIFF_RAW:
172         if (check_size(s, n))
173             return -1;
174         memcpy(dst, src, n);
175         return n;
176     case TIFF_PACKBITS:
177         return ff_rle_encode(dst, s->buf_size - (*s->buf - s->buf_start),
178                              src, 1, n, 2, 0xff, -1, 0);
179     case TIFF_LZW:
180         return ff_lzw_encode(s->lzws, src, n);
181     default:
182         return -1;
183     }
184 }
185
186 static void pack_yuv(TiffEncoderContext *s, const AVFrame *p,
187                      uint8_t *dst, int lnum)
188 {
189     int i, j, k;
190     int w       = (s->width - 1) / s->subsampling[0] + 1;
191     uint8_t *pu = &p->data[1][lnum / s->subsampling[1] * p->linesize[1]];
192     uint8_t *pv = &p->data[2][lnum / s->subsampling[1] * p->linesize[2]];
193     for (i = 0; i < w; i++) {
194         for (j = 0; j < s->subsampling[1]; j++)
195             for (k = 0; k < s->subsampling[0]; k++)
196                 *dst++ = p->data[0][(lnum + j) * p->linesize[0] +
197                                     i * s->subsampling[0] + k];
198         *dst++ = *pu++;
199         *dst++ = *pv++;
200     }
201 }
202
203 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
204                         const AVFrame *pict, int *got_packet)
205 {
206     TiffEncoderContext *s = avctx->priv_data;
207     const AVFrame *const p = pict;
208     int i;
209     uint8_t *ptr;
210     uint8_t *offset;
211     uint32_t strips;
212     uint32_t *strip_sizes   = NULL;
213     uint32_t *strip_offsets = NULL;
214     int bytes_per_row;
215     uint32_t res[2]    = { 72, 1 };     // image resolution (72/1)
216     uint16_t bpp_tab[] = { 8, 8, 8, 8 };
217     int ret;
218     int is_yuv = 0;
219     uint8_t *yuv_line = NULL;
220     int shift_h, shift_v;
221     const AVPixFmtDescriptor *pfd;
222
223     s->avctx = avctx;
224
225     s->width          = avctx->width;
226     s->height         = avctx->height;
227     s->subsampling[0] = 1;
228     s->subsampling[1] = 1;
229
230     switch (avctx->pix_fmt) {
231     case AV_PIX_FMT_RGB48LE:
232     case AV_PIX_FMT_GRAY16LE:
233     case AV_PIX_FMT_RGBA:
234     case AV_PIX_FMT_RGB24:
235     case AV_PIX_FMT_GRAY8:
236     case AV_PIX_FMT_PAL8:
237         pfd    = av_pix_fmt_desc_get(avctx->pix_fmt);
238         s->bpp = av_get_bits_per_pixel(pfd);
239         if (pfd->flags & AV_PIX_FMT_FLAG_PAL)
240             s->photometric_interpretation = 3;
241         else if (pfd->flags & AV_PIX_FMT_FLAG_RGB)
242             s->photometric_interpretation = 2;
243         else
244             s->photometric_interpretation = 1;
245         s->bpp_tab_size = pfd->nb_components;
246         for (i = 0; i < s->bpp_tab_size; i++)
247             bpp_tab[i] = s->bpp / s->bpp_tab_size;
248         break;
249     case AV_PIX_FMT_MONOBLACK:
250         s->bpp                        = 1;
251         s->photometric_interpretation = 1;
252         s->bpp_tab_size               = 0;
253         break;
254     case AV_PIX_FMT_MONOWHITE:
255         s->bpp                        = 1;
256         s->photometric_interpretation = 0;
257         s->bpp_tab_size               = 0;
258         break;
259     case AV_PIX_FMT_YUV420P:
260     case AV_PIX_FMT_YUV422P:
261     case AV_PIX_FMT_YUV444P:
262     case AV_PIX_FMT_YUV410P:
263     case AV_PIX_FMT_YUV411P:
264         av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &shift_h, &shift_v);
265         s->photometric_interpretation = 6;
266         s->bpp                        = 8 + (16 >> (shift_h + shift_v));
267         s->subsampling[0]             = 1 << shift_h;
268         s->subsampling[1]             = 1 << shift_v;
269         s->bpp_tab_size               = 3;
270         is_yuv                        = 1;
271         break;
272     default:
273         av_log(s->avctx, AV_LOG_ERROR,
274                "This colors format is not supported\n");
275         return -1;
276     }
277
278     if (s->compr == TIFF_DEFLATE       ||
279         s->compr == TIFF_ADOBE_DEFLATE ||
280         s->compr == TIFF_LZW)
281         // best choice for DEFLATE
282         s->rps = s->height;
283     else
284         // suggest size of strip
285         s->rps = FFMAX(8192 / (((s->width * s->bpp) >> 3) + 1), 1);
286     // round rps up
287     s->rps = ((s->rps - 1) / s->subsampling[1] + 1) * s->subsampling[1];
288
289     strips = (s->height - 1) / s->rps + 1;
290
291     if (!pkt->data &&
292         (ret = av_new_packet(pkt,
293                              avctx->width * avctx->height * s->bpp * 2 +
294                              avctx->height * 4 + FF_MIN_BUFFER_SIZE)) < 0) {
295         av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
296         return ret;
297     }
298     ptr          = pkt->data;
299     s->buf_start = pkt->data;
300     s->buf       = &ptr;
301     s->buf_size  = pkt->size;
302
303     if (check_size(s, 8))
304         goto fail;
305
306     // write header
307     bytestream_put_le16(&ptr, 0x4949);
308     bytestream_put_le16(&ptr, 42);
309
310     offset = ptr;
311     bytestream_put_le32(&ptr, 0);
312
313     strip_sizes   = av_mallocz(sizeof(*strip_sizes)   * strips);
314     strip_offsets = av_mallocz(sizeof(*strip_offsets) * strips);
315     if (!strip_sizes || !strip_offsets) {
316         ret = AVERROR(ENOMEM);
317         goto fail;
318     }
319
320     bytes_per_row = (((s->width - 1) / s->subsampling[0] + 1) * s->bpp *
321                      s->subsampling[0] * s->subsampling[1] + 7) >> 3;
322     if (is_yuv) {
323         yuv_line = av_malloc(bytes_per_row);
324         if (yuv_line == NULL) {
325             av_log(s->avctx, AV_LOG_ERROR, "Not enough memory\n");
326             ret = AVERROR(ENOMEM);
327             goto fail;
328         }
329     }
330
331 #if CONFIG_ZLIB
332     if (s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE) {
333         uint8_t *zbuf;
334         int zlen, zn;
335         int j;
336
337         zlen = bytes_per_row * s->rps;
338         zbuf = av_malloc(zlen);
339         if (!zbuf) {
340             ret = AVERROR(ENOMEM);
341             goto fail;
342         }
343         strip_offsets[0] = ptr - pkt->data;
344         zn               = 0;
345         for (j = 0; j < s->rps; j++) {
346             if (is_yuv) {
347                 pack_yuv(s, p, yuv_line, j);
348                 memcpy(zbuf + zn, yuv_line, bytes_per_row);
349                 j += s->subsampling[1] - 1;
350             } else
351                 memcpy(zbuf + j * bytes_per_row,
352                        p->data[0] + j * p->linesize[0], bytes_per_row);
353             zn += bytes_per_row;
354         }
355         ret = encode_strip(s, zbuf, ptr, zn, s->compr);
356         av_free(zbuf);
357         if (ret < 0) {
358             av_log(s->avctx, AV_LOG_ERROR, "Encode strip failed\n");
359             goto fail;
360         }
361         ptr           += ret;
362         strip_sizes[0] = ptr - pkt->data - strip_offsets[0];
363     } else
364 #endif
365     if (s->compr == TIFF_LZW) {
366         s->lzws = av_malloc(ff_lzw_encode_state_size);
367         if (!s->lzws) {
368             ret = AVERROR(ENOMEM);
369             goto fail;
370         }
371     }
372     for (i = 0; i < s->height; i++) {
373         if (strip_sizes[i / s->rps] == 0) {
374             if (s->compr == TIFF_LZW) {
375                 ff_lzw_encode_init(s->lzws, ptr,
376                                    s->buf_size - (*s->buf - s->buf_start),
377                                    12, FF_LZW_TIFF, put_bits);
378             }
379             strip_offsets[i / s->rps] = ptr - pkt->data;
380         }
381         if (is_yuv) {
382             pack_yuv(s, p, yuv_line, i);
383             ret = encode_strip(s, yuv_line, ptr, bytes_per_row, s->compr);
384             i  += s->subsampling[1] - 1;
385         } else
386             ret = encode_strip(s, p->data[0] + i * p->linesize[0],
387                                ptr, bytes_per_row, s->compr);
388         if (ret < 0) {
389             av_log(s->avctx, AV_LOG_ERROR, "Encode strip failed\n");
390             goto fail;
391         }
392         strip_sizes[i / s->rps] += ret;
393         ptr                     += ret;
394         if (s->compr == TIFF_LZW &&
395             (i == s->height - 1 || i % s->rps == s->rps - 1)) {
396             ret = ff_lzw_encode_flush(s->lzws, flush_put_bits);
397             strip_sizes[(i / s->rps)] += ret;
398             ptr                       += ret;
399         }
400     }
401     if (s->compr == TIFF_LZW)
402         av_free(s->lzws);
403
404     s->num_entries = 0;
405
406     add_entry1(s, TIFF_SUBFILE, TIFF_LONG, 0);
407     add_entry1(s, TIFF_WIDTH,   TIFF_LONG, s->width);
408     add_entry1(s, TIFF_HEIGHT,  TIFF_LONG, s->height);
409
410     if (s->bpp_tab_size)
411         add_entry(s, TIFF_BPP, TIFF_SHORT, s->bpp_tab_size, bpp_tab);
412
413     add_entry1(s, TIFF_COMPR,      TIFF_SHORT, s->compr);
414     add_entry1(s, TIFF_INVERT,     TIFF_SHORT, s->photometric_interpretation);
415     add_entry(s,  TIFF_STRIP_OFFS, TIFF_LONG,  strips, strip_offsets);
416
417     if (s->bpp_tab_size)
418         add_entry1(s, TIFF_SAMPLES_PER_PIXEL, TIFF_SHORT, s->bpp_tab_size);
419
420     add_entry1(s, TIFF_ROWSPERSTRIP, TIFF_LONG,     s->rps);
421     add_entry(s,  TIFF_STRIP_SIZE,   TIFF_LONG,     strips, strip_sizes);
422     add_entry(s,  TIFF_XRES,         TIFF_RATIONAL, 1,      res);
423     add_entry(s,  TIFF_YRES,         TIFF_RATIONAL, 1,      res);
424     add_entry1(s, TIFF_RES_UNIT,     TIFF_SHORT,    2);
425
426     if (!(avctx->flags & CODEC_FLAG_BITEXACT))
427         add_entry(s, TIFF_SOFTWARE_NAME, TIFF_STRING,
428                   strlen(LIBAVCODEC_IDENT) + 1, LIBAVCODEC_IDENT);
429
430     if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
431         uint16_t pal[256 * 3];
432         for (i = 0; i < 256; i++) {
433             uint32_t rgb = *(uint32_t *) (p->data[1] + i * 4);
434             pal[i]       = ((rgb >> 16) & 0xff) * 257;
435             pal[i + 256] = ((rgb >>  8) & 0xff) * 257;
436             pal[i + 512] =  (rgb        & 0xff) * 257;
437         }
438         add_entry(s, TIFF_PAL, TIFF_SHORT, 256 * 3, pal);
439     }
440     if (is_yuv) {
441         /** according to CCIR Recommendation 601.1 */
442         uint32_t refbw[12] = { 15, 1, 235, 1, 128, 1, 240, 1, 128, 1, 240, 1 };
443         add_entry(s, TIFF_YCBCR_SUBSAMPLING, TIFF_SHORT,    2, s->subsampling);
444         add_entry(s, TIFF_REFERENCE_BW,      TIFF_RATIONAL, 6, refbw);
445     }
446     // write offset to dir
447     bytestream_put_le32(&offset, ptr - pkt->data);
448
449     if (check_size(s, 6 + s->num_entries * 12)) {
450         ret = AVERROR(EINVAL);
451         goto fail;
452     }
453     bytestream_put_le16(&ptr, s->num_entries);  // write tag count
454     bytestream_put_buffer(&ptr, s->entries, s->num_entries * 12);
455     bytestream_put_le32(&ptr, 0);
456
457     pkt->size   = ptr - pkt->data;
458     pkt->flags |= AV_PKT_FLAG_KEY;
459     *got_packet = 1;
460
461 fail:
462     av_free(strip_sizes);
463     av_free(strip_offsets);
464     av_free(yuv_line);
465     return ret;
466 }
467
468 static av_cold int encode_init(AVCodecContext *avctx)
469 {
470     avctx->coded_frame = av_frame_alloc();
471     if (!avctx->coded_frame)
472         return AVERROR(ENOMEM);
473
474     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
475     avctx->coded_frame->key_frame = 1;
476
477     return 0;
478 }
479
480 static av_cold int encode_close(AVCodecContext *avctx)
481 {
482     av_frame_free(&avctx->coded_frame);
483     return 0;
484 }
485
486 #define OFFSET(x) offsetof(TiffEncoderContext, x)
487 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
488 static const AVOption options[] = {
489     { "compression_algo", NULL, OFFSET(compr), AV_OPT_TYPE_INT,   { .i64 = TIFF_PACKBITS }, TIFF_RAW, TIFF_DEFLATE, VE, "compression_algo" },
490     { "packbits",         NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_PACKBITS }, 0,        0,            VE, "compression_algo" },
491     { "raw",              NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_RAW      }, 0,        0,            VE, "compression_algo" },
492     { "lzw",              NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_LZW      }, 0,        0,            VE, "compression_algo" },
493 #if CONFIG_ZLIB
494     { "deflate",          NULL, 0,             AV_OPT_TYPE_CONST, { .i64 = TIFF_DEFLATE  }, 0,        0,            VE, "compression_algo" },
495 #endif
496     { NULL },
497 };
498
499 static const AVClass tiffenc_class = {
500     .class_name = "TIFF encoder",
501     .item_name  = av_default_item_name,
502     .option     = options,
503     .version    = LIBAVUTIL_VERSION_INT,
504 };
505
506 AVCodec ff_tiff_encoder = {
507     .name           = "tiff",
508     .long_name      = NULL_IF_CONFIG_SMALL("TIFF image"),
509     .type           = AVMEDIA_TYPE_VIDEO,
510     .id             = AV_CODEC_ID_TIFF,
511     .priv_data_size = sizeof(TiffEncoderContext),
512     .init           = encode_init,
513     .close          = encode_close,
514     .encode2        = encode_frame,
515     .pix_fmts       = (const enum AVPixelFormat[]) {
516         AV_PIX_FMT_RGB24, AV_PIX_FMT_RGB48LE, AV_PIX_FMT_PAL8,
517         AV_PIX_FMT_RGBA,
518         AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16LE,
519         AV_PIX_FMT_MONOBLACK, AV_PIX_FMT_MONOWHITE,
520         AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P,
521         AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P,
522         AV_PIX_FMT_NONE
523     },
524     .priv_class     = &tiffenc_class,
525 };