3 * Copyright (c) 2003 Fabrice Bellard
5 * This file is part of FFmpeg.
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.
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.
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
23 #include "bytestream.h"
27 #include "libavutil/avassert.h"
28 #include "libavutil/opt.h"
32 #define IOBUF_SIZE 4096
34 typedef struct PNGEncContext {
39 uint8_t *bytestream_start;
40 uint8_t *bytestream_end;
45 uint8_t buf[IOBUF_SIZE];
46 int dpi; ///< Physical pixel density, in dots per inch, if set
47 int dpm; ///< Physical pixel density, in dots per meter, if set
50 static void png_get_interlaced_row(uint8_t *dst, int row_size,
51 int bits_per_pixel, int pass,
52 const uint8_t *src, int width)
54 int x, mask, dst_x, j, b, bpp;
57 static const int masks[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
60 switch(bits_per_pixel) {
62 memset(dst, 0, row_size);
64 for(x = 0; x < width; x++) {
66 if ((mask << j) & 0x80) {
67 b = (src[x >> 3] >> (7 - j)) & 1;
68 dst[dst_x >> 3] |= b << (7 - (dst_x & 7));
74 bpp = bits_per_pixel >> 3;
77 for(x = 0; x < width; x++) {
79 if ((mask << j) & 0x80) {
89 static void sub_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp)
92 for(i = 0; i < w; i++) {
93 int a, b, c, p, pa, pb, pc;
106 if (pa <= pb && pa <= pc)
116 static void png_filter_row(DSPContext *dsp, uint8_t *dst, int filter_type,
117 uint8_t *src, uint8_t *top, int size, int bpp)
121 switch(filter_type) {
122 case PNG_FILTER_VALUE_NONE:
123 memcpy(dst, src, size);
125 case PNG_FILTER_VALUE_SUB:
126 dsp->diff_bytes(dst, src, src-bpp, size);
127 memcpy(dst, src, bpp);
129 case PNG_FILTER_VALUE_UP:
130 dsp->diff_bytes(dst, src, top, size);
132 case PNG_FILTER_VALUE_AVG:
133 for(i = 0; i < bpp; i++)
134 dst[i] = src[i] - (top[i] >> 1);
136 dst[i] = src[i] - ((src[i-bpp] + top[i]) >> 1);
138 case PNG_FILTER_VALUE_PAETH:
139 for(i = 0; i < bpp; i++)
140 dst[i] = src[i] - top[i];
141 sub_png_paeth_prediction(dst+i, src+i, top+i, size-i, bpp);
146 static uint8_t *png_choose_filter(PNGEncContext *s, uint8_t *dst,
147 uint8_t *src, uint8_t *top, int size, int bpp)
149 int pred = s->filter_type;
150 av_assert0(bpp || !pred);
152 pred = PNG_FILTER_VALUE_SUB;
153 if(pred == PNG_FILTER_VALUE_MIXED) {
155 int cost, bcost = INT_MAX;
156 uint8_t *buf1 = dst, *buf2 = dst + size + 16;
157 for(pred=0; pred<5; pred++) {
158 png_filter_row(&s->dsp, buf1+1, pred, src, top, size, bpp);
161 for(i=0; i<=size; i++)
162 cost += abs((int8_t)buf1[i]);
165 FFSWAP(uint8_t*, buf1, buf2);
170 png_filter_row(&s->dsp, dst+1, pred, src, top, size, bpp);
176 static void png_write_chunk(uint8_t **f, uint32_t tag,
177 const uint8_t *buf, int length)
182 bytestream_put_be32(f, length);
183 crc = crc32(0, Z_NULL, 0);
184 AV_WL32(tagbuf, tag);
185 crc = crc32(crc, tagbuf, 4);
186 bytestream_put_be32(f, av_bswap32(tag));
188 crc = crc32(crc, buf, length);
189 memcpy(*f, buf, length);
192 bytestream_put_be32(f, crc);
195 /* XXX: do filtering */
196 static int png_write_row(PNGEncContext *s, const uint8_t *data, int size)
200 s->zstream.avail_in = size;
201 s->zstream.next_in = (uint8_t *)data;
202 while (s->zstream.avail_in > 0) {
203 ret = deflate(&s->zstream, Z_NO_FLUSH);
206 if (s->zstream.avail_out == 0) {
207 if(s->bytestream_end - s->bytestream > IOBUF_SIZE + 100)
208 png_write_chunk(&s->bytestream, MKTAG('I', 'D', 'A', 'T'), s->buf, IOBUF_SIZE);
209 s->zstream.avail_out = IOBUF_SIZE;
210 s->zstream.next_out = s->buf;
216 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
217 const AVFrame *pict, int *got_packet)
219 PNGEncContext *s = avctx->priv_data;
220 const AVFrame * const p = pict;
221 int bit_depth, color_type, y, len, row_size, ret, is_progressive;
222 int bits_per_pixel, pass_row_size, enc_row_size;
223 int64_t max_packet_size;
224 int compression_level;
226 uint8_t *crow_base = NULL, *crow_buf, *crow;
227 uint8_t *progressive_buf = NULL;
228 uint8_t *top_buf = NULL;
230 is_progressive = !!(avctx->flags & CODEC_FLAG_INTERLACED_DCT);
231 switch(avctx->pix_fmt) {
232 case AV_PIX_FMT_RGBA64BE:
234 color_type = PNG_COLOR_TYPE_RGB_ALPHA;
236 case AV_PIX_FMT_RGB48BE:
238 color_type = PNG_COLOR_TYPE_RGB;
240 case AV_PIX_FMT_RGBA:
242 color_type = PNG_COLOR_TYPE_RGB_ALPHA;
244 case AV_PIX_FMT_RGB24:
246 color_type = PNG_COLOR_TYPE_RGB;
248 case AV_PIX_FMT_GRAY16BE:
250 color_type = PNG_COLOR_TYPE_GRAY;
252 case AV_PIX_FMT_GRAY8:
254 color_type = PNG_COLOR_TYPE_GRAY;
256 case AV_PIX_FMT_GRAY8A:
258 color_type = PNG_COLOR_TYPE_GRAY_ALPHA;
260 case AV_PIX_FMT_MONOBLACK:
262 color_type = PNG_COLOR_TYPE_GRAY;
264 case AV_PIX_FMT_PAL8:
266 color_type = PNG_COLOR_TYPE_PALETTE;
271 bits_per_pixel = ff_png_get_nb_channels(color_type) * bit_depth;
272 row_size = (avctx->width * bits_per_pixel + 7) >> 3;
274 s->zstream.zalloc = ff_png_zalloc;
275 s->zstream.zfree = ff_png_zfree;
276 s->zstream.opaque = NULL;
277 compression_level = avctx->compression_level == FF_COMPRESSION_DEFAULT ?
278 Z_DEFAULT_COMPRESSION :
279 av_clip(avctx->compression_level, 0, 9);
280 ret = deflateInit2(&s->zstream, compression_level,
281 Z_DEFLATED, 15, 8, Z_DEFAULT_STRATEGY);
285 enc_row_size = deflateBound(&s->zstream, row_size);
286 max_packet_size = avctx->height * (int64_t)(enc_row_size +
287 ((enc_row_size + IOBUF_SIZE - 1) / IOBUF_SIZE) * 12)
288 + FF_MIN_BUFFER_SIZE;
289 if (max_packet_size > INT_MAX)
290 return AVERROR(ENOMEM);
291 if ((ret = ff_alloc_packet2(avctx, pkt, max_packet_size)) < 0)
294 s->bytestream_start =
295 s->bytestream = pkt->data;
296 s->bytestream_end = pkt->data + pkt->size;
298 crow_base = av_malloc((row_size + 32) << (s->filter_type == PNG_FILTER_VALUE_MIXED));
301 crow_buf = crow_base + 15; // pixel data should be aligned, but there's a control byte before it
302 if (is_progressive) {
303 progressive_buf = av_malloc(row_size + 1);
304 if (!progressive_buf)
307 if (is_progressive) {
308 top_buf = av_malloc(row_size + 1);
313 /* write png header */
314 AV_WB64(s->bytestream, PNGSIG);
317 AV_WB32(s->buf, avctx->width);
318 AV_WB32(s->buf + 4, avctx->height);
319 s->buf[8] = bit_depth;
320 s->buf[9] = color_type;
321 s->buf[10] = 0; /* compression type */
322 s->buf[11] = 0; /* filter type */
323 s->buf[12] = is_progressive; /* interlace type */
325 png_write_chunk(&s->bytestream, MKTAG('I', 'H', 'D', 'R'), s->buf, 13);
328 AV_WB32(s->buf, s->dpm);
329 AV_WB32(s->buf + 4, s->dpm);
330 s->buf[8] = 1; /* unit specifier is meter */
332 AV_WB32(s->buf, avctx->sample_aspect_ratio.num);
333 AV_WB32(s->buf + 4, avctx->sample_aspect_ratio.den);
334 s->buf[8] = 0; /* unit specifier is unknown */
336 png_write_chunk(&s->bytestream, MKTAG('p', 'H', 'Y', 's'), s->buf, 9);
338 /* put the palette if needed */
339 if (color_type == PNG_COLOR_TYPE_PALETTE) {
340 int has_alpha, alpha, i;
345 palette = (uint32_t *)p->data[1];
347 alpha_ptr = s->buf + 256 * 3;
349 for(i = 0; i < 256; i++) {
354 *alpha_ptr++ = alpha;
355 bytestream_put_be24(&ptr, v);
357 png_write_chunk(&s->bytestream, MKTAG('P', 'L', 'T', 'E'), s->buf, 256 * 3);
359 png_write_chunk(&s->bytestream, MKTAG('t', 'R', 'N', 'S'), s->buf + 256 * 3, 256);
363 /* now put each row */
364 s->zstream.avail_out = IOBUF_SIZE;
365 s->zstream.next_out = s->buf;
366 if (is_progressive) {
369 for(pass = 0; pass < NB_PASSES; pass++) {
370 /* NOTE: a pass is completely omitted if no pixels would be
372 pass_row_size = ff_png_pass_row_size(pass, bits_per_pixel, avctx->width);
373 if (pass_row_size > 0) {
375 for(y = 0; y < avctx->height; y++) {
376 if ((ff_png_pass_ymask[pass] << (y & 7)) & 0x80) {
377 ptr = p->data[0] + y * p->linesize[0];
378 FFSWAP(uint8_t*, progressive_buf, top_buf);
379 png_get_interlaced_row(progressive_buf, pass_row_size,
380 bits_per_pixel, pass,
382 crow = png_choose_filter(s, crow_buf, progressive_buf, top, pass_row_size, bits_per_pixel>>3);
383 png_write_row(s, crow, pass_row_size + 1);
384 top = progressive_buf;
391 for(y = 0; y < avctx->height; y++) {
392 ptr = p->data[0] + y * p->linesize[0];
393 crow = png_choose_filter(s, crow_buf, ptr, top, row_size, bits_per_pixel>>3);
394 png_write_row(s, crow, row_size + 1);
398 /* compress last bytes */
400 ret = deflate(&s->zstream, Z_FINISH);
401 if (ret == Z_OK || ret == Z_STREAM_END) {
402 len = IOBUF_SIZE - s->zstream.avail_out;
403 if (len > 0 && s->bytestream_end - s->bytestream > len + 100) {
404 png_write_chunk(&s->bytestream, MKTAG('I', 'D', 'A', 'T'), s->buf, len);
406 s->zstream.avail_out = IOBUF_SIZE;
407 s->zstream.next_out = s->buf;
408 if (ret == Z_STREAM_END)
414 png_write_chunk(&s->bytestream, MKTAG('I', 'E', 'N', 'D'), NULL, 0);
416 pkt->size = s->bytestream - s->bytestream_start;
417 pkt->flags |= AV_PKT_FLAG_KEY;
423 av_free(progressive_buf);
425 deflateEnd(&s->zstream);
432 static av_cold int png_enc_init(AVCodecContext *avctx){
433 PNGEncContext *s = avctx->priv_data;
435 switch(avctx->pix_fmt) {
436 case AV_PIX_FMT_RGBA:
437 avctx->bits_per_coded_sample = 32;
439 case AV_PIX_FMT_RGB24:
440 avctx->bits_per_coded_sample = 24;
442 case AV_PIX_FMT_GRAY8:
443 avctx->bits_per_coded_sample = 0x28;
445 case AV_PIX_FMT_MONOBLACK:
446 avctx->bits_per_coded_sample = 1;
448 case AV_PIX_FMT_PAL8:
449 avctx->bits_per_coded_sample = 8;
452 avctx->coded_frame = av_frame_alloc();
453 if (!avctx->coded_frame)
454 return AVERROR(ENOMEM);
456 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
457 avctx->coded_frame->key_frame = 1;
459 ff_dsputil_init(&s->dsp, avctx);
461 s->filter_type = av_clip(avctx->prediction_method, PNG_FILTER_VALUE_NONE, PNG_FILTER_VALUE_MIXED);
462 if(avctx->pix_fmt == AV_PIX_FMT_MONOBLACK)
463 s->filter_type = PNG_FILTER_VALUE_NONE;
465 if (s->dpi && s->dpm) {
466 av_log(avctx, AV_LOG_ERROR, "Only one of 'dpi' or 'dpm' options should be set\n");
467 return AVERROR(EINVAL);
469 s->dpm = s->dpi * 10000 / 254;
475 static av_cold int png_enc_close(AVCodecContext *avctx)
477 av_frame_free(&avctx->coded_frame);
481 #define OFFSET(x) offsetof(PNGEncContext, x)
482 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
483 static const AVOption options[] = {
484 {"dpi", "Set image resolution (in dots per inch)", OFFSET(dpi), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 0x10000, VE},
485 {"dpm", "Set image resolution (in dots per meter)", OFFSET(dpm), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 0x10000, VE},
489 static const AVClass pngenc_class = {
490 .class_name = "PNG encoder",
491 .item_name = av_default_item_name,
493 .version = LIBAVUTIL_VERSION_INT,
496 AVCodec ff_png_encoder = {
498 .long_name = NULL_IF_CONFIG_SMALL("PNG (Portable Network Graphics) image"),
499 .type = AVMEDIA_TYPE_VIDEO,
500 .id = AV_CODEC_ID_PNG,
501 .priv_data_size = sizeof(PNGEncContext),
502 .init = png_enc_init,
503 .close = png_enc_close,
504 .encode2 = encode_frame,
505 .capabilities = CODEC_CAP_FRAME_THREADS | CODEC_CAP_INTRA_ONLY,
506 .pix_fmts = (const enum AVPixelFormat[]){
507 AV_PIX_FMT_RGB24, AV_PIX_FMT_RGBA,
508 AV_PIX_FMT_RGB48BE, AV_PIX_FMT_RGBA64BE,
510 AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY8A,
512 AV_PIX_FMT_MONOBLACK, AV_PIX_FMT_NONE
514 .priv_class = &pngenc_class,