You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

510 lines
17KB

  1. /*
  2. * TIFF image encoder
  3. * Copyright (c) 2007 Bartlomiej Wolowiec
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * TIFF image encoder
  24. * @author Bartlomiej Wolowiec
  25. */
  26. #include "libavutil/log.h"
  27. #include "libavutil/opt.h"
  28. #include "avcodec.h"
  29. #include "internal.h"
  30. #if CONFIG_ZLIB
  31. #include <zlib.h>
  32. #endif
  33. #include "libavutil/opt.h"
  34. #include "bytestream.h"
  35. #include "tiff.h"
  36. #include "rle.h"
  37. #include "lzw.h"
  38. #include "put_bits.h"
  39. #define TIFF_MAX_ENTRY 32
  40. /** sizes of various TIFF field types (string size = 1)*/
  41. static const uint8_t type_sizes2[6] = {
  42. 0, 1, 1, 2, 4, 8
  43. };
  44. typedef struct TiffEncoderContext {
  45. AVClass *class; ///< for private options
  46. AVCodecContext *avctx;
  47. AVFrame picture;
  48. int width; ///< picture width
  49. int height; ///< picture height
  50. unsigned int bpp; ///< bits per pixel
  51. int compr; ///< compression level
  52. int bpp_tab_size; ///< bpp_tab size
  53. int photometric_interpretation; ///< photometric interpretation
  54. int strips; ///< number of strips
  55. int rps; ///< row per strip
  56. uint8_t entries[TIFF_MAX_ENTRY*12]; ///< entires in header
  57. int num_entries; ///< number of entires
  58. uint8_t **buf; ///< actual position in buffer
  59. uint8_t *buf_start; ///< pointer to first byte in buffer
  60. int buf_size; ///< buffer size
  61. uint16_t subsampling[2]; ///< YUV subsampling factors
  62. struct LZWEncodeState *lzws; ///< LZW Encode state
  63. uint32_t dpi; ///< image resolution in DPI
  64. } TiffEncoderContext;
  65. /**
  66. * Check free space in buffer
  67. * @param s Tiff context
  68. * @param need Needed bytes
  69. * @return 0 - ok, 1 - no free space
  70. */
  71. static inline int check_size(TiffEncoderContext * s, uint64_t need)
  72. {
  73. if (s->buf_size < *s->buf - s->buf_start + need) {
  74. *s->buf = s->buf_start + s->buf_size + 1;
  75. av_log(s->avctx, AV_LOG_ERROR, "Buffer is too small\n");
  76. return 1;
  77. }
  78. return 0;
  79. }
  80. /**
  81. * Put n values to buffer
  82. *
  83. * @param p Pointer to pointer to output buffer
  84. * @param n Number of values
  85. * @param val Pointer to values
  86. * @param type Type of values
  87. * @param flip =0 - normal copy, >0 - flip
  88. */
  89. static void tnput(uint8_t ** p, int n, const uint8_t * val, enum TiffTypes type,
  90. int flip)
  91. {
  92. int i;
  93. #if HAVE_BIGENDIAN
  94. flip ^= ((int[]) {0, 0, 0, 1, 3, 3})[type];
  95. #endif
  96. for (i = 0; i < n * type_sizes2[type]; i++)
  97. *(*p)++ = val[i ^ flip];
  98. }
  99. /**
  100. * Add entry to directory in tiff header.
  101. * @param s Tiff context
  102. * @param tag Tag that identifies the entry
  103. * @param type Entry type
  104. * @param count The number of values
  105. * @param ptr_val Pointer to values
  106. */
  107. static void add_entry(TiffEncoderContext * s,
  108. enum TiffTags tag, enum TiffTypes type, int count,
  109. const void *ptr_val)
  110. {
  111. uint8_t *entries_ptr = s->entries + 12 * s->num_entries;
  112. assert(s->num_entries < TIFF_MAX_ENTRY);
  113. bytestream_put_le16(&entries_ptr, tag);
  114. bytestream_put_le16(&entries_ptr, type);
  115. bytestream_put_le32(&entries_ptr, count);
  116. if (type_sizes[type] * count <= 4) {
  117. tnput(&entries_ptr, count, ptr_val, type, 0);
  118. } else {
  119. bytestream_put_le32(&entries_ptr, *s->buf - s->buf_start);
  120. check_size(s, count * type_sizes2[type]);
  121. tnput(s->buf, count, ptr_val, type, 0);
  122. }
  123. s->num_entries++;
  124. }
  125. static void add_entry1(TiffEncoderContext * s,
  126. enum TiffTags tag, enum TiffTypes type, int val){
  127. uint16_t w = val;
  128. uint32_t dw= val;
  129. add_entry(s, tag, type, 1, type == TIFF_SHORT ? (void *)&w : (void *)&dw);
  130. }
  131. /**
  132. * Encode one strip in tiff file
  133. *
  134. * @param s Tiff context
  135. * @param src Input buffer
  136. * @param dst Output buffer
  137. * @param n Size of input buffer
  138. * @param compr Compression method
  139. * @return Number of output bytes. If an output error is encountered, -1 returned
  140. */
  141. static int encode_strip(TiffEncoderContext * s, const int8_t * src,
  142. uint8_t * dst, int n, int compr)
  143. {
  144. switch (compr) {
  145. #if CONFIG_ZLIB
  146. case TIFF_DEFLATE:
  147. case TIFF_ADOBE_DEFLATE:
  148. {
  149. unsigned long zlen = s->buf_size - (*s->buf - s->buf_start);
  150. if (compress(dst, &zlen, src, n) != Z_OK) {
  151. av_log(s->avctx, AV_LOG_ERROR, "Compressing failed\n");
  152. return -1;
  153. }
  154. return zlen;
  155. }
  156. #endif
  157. case TIFF_RAW:
  158. if (check_size(s, n))
  159. return -1;
  160. memcpy(dst, src, n);
  161. return n;
  162. case TIFF_PACKBITS:
  163. return ff_rle_encode(dst, s->buf_size - (*s->buf - s->buf_start), src, 1, n, 2, 0xff, -1, 0);
  164. case TIFF_LZW:
  165. return ff_lzw_encode(s->lzws, src, n);
  166. default:
  167. return -1;
  168. }
  169. }
  170. static void pack_yuv(TiffEncoderContext * s, uint8_t * dst, int lnum)
  171. {
  172. AVFrame *p = &s->picture;
  173. int i, j, k;
  174. int w = (s->width - 1) / s->subsampling[0] + 1;
  175. uint8_t *pu = &p->data[1][lnum / s->subsampling[1] * p->linesize[1]];
  176. uint8_t *pv = &p->data[2][lnum / s->subsampling[1] * p->linesize[2]];
  177. for (i = 0; i < w; i++){
  178. for (j = 0; j < s->subsampling[1]; j++)
  179. for (k = 0; k < s->subsampling[0]; k++)
  180. *dst++ = p->data[0][(lnum + j) * p->linesize[0] +
  181. i * s->subsampling[0] + k];
  182. *dst++ = *pu++;
  183. *dst++ = *pv++;
  184. }
  185. }
  186. static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
  187. const AVFrame *pict, int *got_packet)
  188. {
  189. TiffEncoderContext *s = avctx->priv_data;
  190. AVFrame *const p = &s->picture;
  191. int i;
  192. uint8_t *ptr;
  193. uint8_t *offset;
  194. uint32_t strips;
  195. uint32_t *strip_sizes = NULL;
  196. uint32_t *strip_offsets = NULL;
  197. int bytes_per_row;
  198. uint32_t res[2] = { s->dpi, 1 }; // image resolution (72/1)
  199. uint16_t bpp_tab[] = { 8, 8, 8, 8 };
  200. int ret = -1;
  201. int is_yuv = 0;
  202. uint8_t *yuv_line = NULL;
  203. int shift_h, shift_v;
  204. s->avctx = avctx;
  205. *p = *pict;
  206. p->pict_type = AV_PICTURE_TYPE_I;
  207. p->key_frame = 1;
  208. avctx->coded_frame= &s->picture;
  209. s->width = avctx->width;
  210. s->height = avctx->height;
  211. s->subsampling[0] = 1;
  212. s->subsampling[1] = 1;
  213. switch (avctx->pix_fmt) {
  214. case PIX_FMT_RGBA64LE:
  215. s->bpp = 64;
  216. s->photometric_interpretation = 2;
  217. bpp_tab[0] = 16;
  218. bpp_tab[1] = 16;
  219. bpp_tab[2] = 16;
  220. bpp_tab[3] = 16;
  221. break;
  222. case PIX_FMT_RGB48LE:
  223. s->bpp = 48;
  224. s->photometric_interpretation = 2;
  225. bpp_tab[0] = 16;
  226. bpp_tab[1] = 16;
  227. bpp_tab[2] = 16;
  228. bpp_tab[3] = 16;
  229. break;
  230. case PIX_FMT_RGBA:
  231. avctx->bits_per_coded_sample =
  232. s->bpp = 32;
  233. s->photometric_interpretation = 2;
  234. break;
  235. case PIX_FMT_RGB24:
  236. avctx->bits_per_coded_sample =
  237. s->bpp = 24;
  238. s->photometric_interpretation = 2;
  239. break;
  240. case PIX_FMT_GRAY8:
  241. avctx->bits_per_coded_sample = 0x28;
  242. s->bpp = 8;
  243. s->photometric_interpretation = 1;
  244. break;
  245. case PIX_FMT_PAL8:
  246. avctx->bits_per_coded_sample =
  247. s->bpp = 8;
  248. s->photometric_interpretation = 3;
  249. break;
  250. case PIX_FMT_MONOBLACK:
  251. case PIX_FMT_MONOWHITE:
  252. avctx->bits_per_coded_sample =
  253. s->bpp = 1;
  254. s->photometric_interpretation = avctx->pix_fmt == PIX_FMT_MONOBLACK;
  255. bpp_tab[0] = 1;
  256. break;
  257. case PIX_FMT_YUV420P:
  258. case PIX_FMT_YUV422P:
  259. case PIX_FMT_YUV444P:
  260. case PIX_FMT_YUV410P:
  261. case PIX_FMT_YUV411P:
  262. s->photometric_interpretation = 6;
  263. avcodec_get_chroma_sub_sample(avctx->pix_fmt,
  264. &shift_h, &shift_v);
  265. s->bpp = 8 + (16 >> (shift_h + shift_v));
  266. s->subsampling[0] = 1 << shift_h;
  267. s->subsampling[1] = 1 << shift_v;
  268. s->bpp_tab_size = 3;
  269. is_yuv = 1;
  270. break;
  271. default:
  272. av_log(s->avctx, AV_LOG_ERROR,
  273. "This colors format is not supported\n");
  274. return -1;
  275. }
  276. if (!is_yuv)
  277. s->bpp_tab_size = (s->bpp >= 48) ? ((s->bpp + 7) >> 4):((s->bpp + 7) >> 3);
  278. if (s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE || s->compr == TIFF_LZW)
  279. //best choose for DEFLATE
  280. s->rps = s->height;
  281. else
  282. s->rps = FFMAX(8192 / (((s->width * s->bpp) >> 3) + 1), 1); // suggest size of strip
  283. s->rps = ((s->rps - 1) / s->subsampling[1] + 1) * s->subsampling[1]; // round rps up
  284. strips = (s->height - 1) / s->rps + 1;
  285. if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width * avctx->height * s->bpp * 2 +
  286. avctx->height * 4 + FF_MIN_BUFFER_SIZE)) < 0)
  287. return ret;
  288. ptr = pkt->data;
  289. s->buf_start = pkt->data;
  290. s->buf = &ptr;
  291. s->buf_size = pkt->size;
  292. if (check_size(s, 8))
  293. goto fail;
  294. // write header
  295. bytestream_put_le16(&ptr, 0x4949);
  296. bytestream_put_le16(&ptr, 42);
  297. offset = ptr;
  298. bytestream_put_le32(&ptr, 0);
  299. strip_sizes = av_mallocz(sizeof(*strip_sizes) * strips);
  300. strip_offsets = av_mallocz(sizeof(*strip_offsets) * strips);
  301. bytes_per_row = (((s->width - 1)/s->subsampling[0] + 1) * s->bpp
  302. * s->subsampling[0] * s->subsampling[1] + 7) >> 3;
  303. if (is_yuv){
  304. yuv_line = av_malloc(bytes_per_row);
  305. if (yuv_line == NULL){
  306. av_log(s->avctx, AV_LOG_ERROR, "Not enough memory\n");
  307. goto fail;
  308. }
  309. }
  310. #if CONFIG_ZLIB
  311. if (s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE) {
  312. uint8_t *zbuf;
  313. int zlen, zn;
  314. int j;
  315. zlen = bytes_per_row * s->rps;
  316. zbuf = av_malloc(zlen);
  317. strip_offsets[0] = ptr - pkt->data;
  318. zn = 0;
  319. for (j = 0; j < s->rps; j++) {
  320. if (is_yuv){
  321. pack_yuv(s, yuv_line, j);
  322. memcpy(zbuf + zn, yuv_line, bytes_per_row);
  323. j += s->subsampling[1] - 1;
  324. }
  325. else
  326. memcpy(zbuf + j * bytes_per_row,
  327. p->data[0] + j * p->linesize[0], bytes_per_row);
  328. zn += bytes_per_row;
  329. }
  330. ret = encode_strip(s, zbuf, ptr, zn, s->compr);
  331. av_free(zbuf);
  332. if (ret < 0) {
  333. av_log(s->avctx, AV_LOG_ERROR, "Encode strip failed\n");
  334. goto fail;
  335. }
  336. ptr += ret;
  337. strip_sizes[0] = ptr - pkt->data - strip_offsets[0];
  338. } else
  339. #endif
  340. {
  341. if(s->compr == TIFF_LZW)
  342. s->lzws = av_malloc(ff_lzw_encode_state_size);
  343. for (i = 0; i < s->height; i++) {
  344. if (strip_sizes[i / s->rps] == 0) {
  345. if(s->compr == TIFF_LZW){
  346. ff_lzw_encode_init(s->lzws, ptr, s->buf_size - (*s->buf - s->buf_start),
  347. 12, FF_LZW_TIFF, put_bits);
  348. }
  349. strip_offsets[i / s->rps] = ptr - pkt->data;
  350. }
  351. if (is_yuv){
  352. pack_yuv(s, yuv_line, i);
  353. ret = encode_strip(s, yuv_line, ptr, bytes_per_row, s->compr);
  354. i += s->subsampling[1] - 1;
  355. }
  356. else
  357. ret = encode_strip(s, p->data[0] + i * p->linesize[0],
  358. ptr, bytes_per_row, s->compr);
  359. if (ret < 0) {
  360. av_log(s->avctx, AV_LOG_ERROR, "Encode strip failed\n");
  361. goto fail;
  362. }
  363. strip_sizes[i / s->rps] += ret;
  364. ptr += ret;
  365. if(s->compr == TIFF_LZW && (i==s->height-1 || i%s->rps == s->rps-1)){
  366. ret = ff_lzw_encode_flush(s->lzws, flush_put_bits);
  367. strip_sizes[(i / s->rps )] += ret ;
  368. ptr += ret;
  369. }
  370. }
  371. if(s->compr == TIFF_LZW)
  372. av_free(s->lzws);
  373. }
  374. s->num_entries = 0;
  375. add_entry1(s,TIFF_SUBFILE, TIFF_LONG, 0);
  376. add_entry1(s,TIFF_WIDTH, TIFF_LONG, s->width);
  377. add_entry1(s,TIFF_HEIGHT, TIFF_LONG, s->height);
  378. if (s->bpp_tab_size)
  379. add_entry(s, TIFF_BPP, TIFF_SHORT, s->bpp_tab_size, bpp_tab);
  380. add_entry1(s,TIFF_COMPR, TIFF_SHORT, s->compr);
  381. add_entry1(s,TIFF_INVERT, TIFF_SHORT, s->photometric_interpretation);
  382. add_entry(s, TIFF_STRIP_OFFS, TIFF_LONG, strips, strip_offsets);
  383. if (s->bpp_tab_size)
  384. add_entry1(s,TIFF_SAMPLES_PER_PIXEL, TIFF_SHORT, s->bpp_tab_size);
  385. add_entry1(s,TIFF_ROWSPERSTRIP, TIFF_LONG, s->rps);
  386. add_entry(s, TIFF_STRIP_SIZE, TIFF_LONG, strips, strip_sizes);
  387. add_entry(s, TIFF_XRES, TIFF_RATIONAL, 1, res);
  388. add_entry(s, TIFF_YRES, TIFF_RATIONAL, 1, res);
  389. add_entry1(s,TIFF_RES_UNIT, TIFF_SHORT, 2);
  390. if(!(avctx->flags & CODEC_FLAG_BITEXACT))
  391. add_entry(s, TIFF_SOFTWARE_NAME, TIFF_STRING,
  392. strlen(LIBAVCODEC_IDENT) + 1, LIBAVCODEC_IDENT);
  393. if (avctx->pix_fmt == PIX_FMT_PAL8) {
  394. uint16_t pal[256 * 3];
  395. for (i = 0; i < 256; i++) {
  396. uint32_t rgb = *(uint32_t *) (p->data[1] + i * 4);
  397. pal[i] = ((rgb >> 16) & 0xff) * 257;
  398. pal[i + 256] = ((rgb >> 8 ) & 0xff) * 257;
  399. pal[i + 512] = ( rgb & 0xff) * 257;
  400. }
  401. add_entry(s, TIFF_PAL, TIFF_SHORT, 256 * 3, pal);
  402. }
  403. if (is_yuv){
  404. /** according to CCIR Recommendation 601.1 */
  405. uint32_t refbw[12] = {15, 1, 235, 1, 128, 1, 240, 1, 128, 1, 240, 1};
  406. add_entry(s, TIFF_YCBCR_SUBSAMPLING, TIFF_SHORT, 2, s->subsampling);
  407. add_entry(s, TIFF_REFERENCE_BW, TIFF_RATIONAL, 6, refbw);
  408. }
  409. bytestream_put_le32(&offset, ptr - pkt->data); // write offset to dir
  410. if (check_size(s, 6 + s->num_entries * 12)) {
  411. ret = AVERROR(EINVAL);
  412. goto fail;
  413. }
  414. bytestream_put_le16(&ptr, s->num_entries); // write tag count
  415. bytestream_put_buffer(&ptr, s->entries, s->num_entries * 12);
  416. bytestream_put_le32(&ptr, 0);
  417. pkt->size = ptr - pkt->data;
  418. pkt->flags |= AV_PKT_FLAG_KEY;
  419. *got_packet = 1;
  420. fail:
  421. av_free(strip_sizes);
  422. av_free(strip_offsets);
  423. av_free(yuv_line);
  424. return ret < 0 ? ret : 0;
  425. }
  426. #define OFFSET(x) offsetof(TiffEncoderContext, x)
  427. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  428. static const AVOption options[] = {
  429. {"dpi", "set the image resolution (in dpi)", OFFSET(dpi), AV_OPT_TYPE_INT, {.dbl = 72}, 1, 0x10000, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_ENCODING_PARAM},
  430. { "compression_algo", NULL, OFFSET(compr), AV_OPT_TYPE_INT, {TIFF_PACKBITS}, TIFF_RAW, TIFF_DEFLATE, VE, "compression_algo" },
  431. { "packbits", NULL, 0, AV_OPT_TYPE_CONST, {TIFF_PACKBITS}, 0, 0, VE, "compression_algo" },
  432. { "raw", NULL, 0, AV_OPT_TYPE_CONST, {TIFF_RAW}, 0, 0, VE, "compression_algo" },
  433. { "lzw", NULL, 0, AV_OPT_TYPE_CONST, {TIFF_LZW}, 0, 0, VE, "compression_algo" },
  434. #if CONFIG_ZLIB
  435. { "deflate", NULL, 0, AV_OPT_TYPE_CONST, {TIFF_DEFLATE}, 0, 0, VE, "compression_algo" },
  436. #endif
  437. { NULL },
  438. };
  439. static const AVClass tiffenc_class = {
  440. .class_name = "TIFF encoder",
  441. .item_name = av_default_item_name,
  442. .option = options,
  443. .version = LIBAVUTIL_VERSION_INT,
  444. };
  445. AVCodec ff_tiff_encoder = {
  446. .name = "tiff",
  447. .type = AVMEDIA_TYPE_VIDEO,
  448. .id = CODEC_ID_TIFF,
  449. .priv_data_size = sizeof(TiffEncoderContext),
  450. .encode2 = encode_frame,
  451. .pix_fmts = (const enum PixelFormat[]) {
  452. PIX_FMT_RGB24, PIX_FMT_PAL8, PIX_FMT_GRAY8,
  453. PIX_FMT_MONOBLACK, PIX_FMT_MONOWHITE,
  454. PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_YUV444P,
  455. PIX_FMT_YUV410P, PIX_FMT_YUV411P, PIX_FMT_RGB48LE,
  456. PIX_FMT_RGBA, PIX_FMT_RGBA64LE,
  457. PIX_FMT_NONE
  458. },
  459. .long_name = NULL_IF_CONFIG_SMALL("TIFF image"),
  460. .priv_class = &tiffenc_class,
  461. };