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
24 #include "libavutil/bprint.h"
25 #include "libavutil/imgutils.h"
27 #include "bytestream.h"
36 typedef struct PNGDecContext {
38 AVCodecContext *avctx;
41 ThreadFrame previous_picture;
42 ThreadFrame last_picture;
48 int x_offset, y_offset;
49 uint8_t dispose_op, blend_op;
62 uint32_t palette[256];
65 unsigned int last_row_size;
67 unsigned int tmp_row_size;
71 int crow_size; /* compressed row size (include filter type) */
72 int row_size; /* decompressed row size */
73 int pass_row_size; /* decompress row size of the current pass */
78 /* Mask to determine which pixels are valid in a pass */
79 static const uint8_t png_pass_mask[NB_PASSES] = {
80 0x01, 0x01, 0x11, 0x11, 0x55, 0x55, 0xff,
83 /* Mask to determine which y pixels can be written in a pass */
84 static const uint8_t png_pass_dsp_ymask[NB_PASSES] = {
85 0xff, 0xff, 0x0f, 0xff, 0x33, 0xff, 0x55,
88 /* Mask to determine which pixels to overwrite while displaying */
89 static const uint8_t png_pass_dsp_mask[NB_PASSES] = {
90 0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff
93 /* NOTE: we try to construct a good looking image at each pass. width
94 * is the original image width. We also do pixel format conversion at
96 static void png_put_interlaced_row(uint8_t *dst, int width,
97 int bits_per_pixel, int pass,
98 int color_type, const uint8_t *src)
100 int x, mask, dsp_mask, j, src_x, b, bpp;
104 mask = png_pass_mask[pass];
105 dsp_mask = png_pass_dsp_mask[pass];
107 switch (bits_per_pixel) {
110 for (x = 0; x < width; x++) {
112 if ((dsp_mask << j) & 0x80) {
113 b = (src[src_x >> 3] >> (7 - (src_x & 7))) & 1;
114 dst[x >> 3] &= 0xFF7F>>j;
115 dst[x >> 3] |= b << (7 - j);
117 if ((mask << j) & 0x80)
123 for (x = 0; x < width; x++) {
124 int j2 = 2 * (x & 3);
126 if ((dsp_mask << j) & 0x80) {
127 b = (src[src_x >> 2] >> (6 - 2*(src_x & 3))) & 3;
128 dst[x >> 2] &= 0xFF3F>>j2;
129 dst[x >> 2] |= b << (6 - j2);
131 if ((mask << j) & 0x80)
137 for (x = 0; x < width; x++) {
140 if ((dsp_mask << j) & 0x80) {
141 b = (src[src_x >> 1] >> (4 - 4*(src_x & 1))) & 15;
142 dst[x >> 1] &= 0xFF0F>>j2;
143 dst[x >> 1] |= b << (4 - j2);
145 if ((mask << j) & 0x80)
150 bpp = bits_per_pixel >> 3;
153 for (x = 0; x < width; x++) {
155 if ((dsp_mask << j) & 0x80) {
159 if ((mask << j) & 0x80)
166 void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top,
170 for (i = 0; i < w; i++) {
171 int a, b, c, p, pa, pb, pc;
184 if (pa <= pb && pa <= pc)
194 #define UNROLL1(bpp, op) \
203 for (; i <= size - bpp; i += bpp) { \
204 dst[i + 0] = r = op(r, src[i + 0], last[i + 0]); \
207 dst[i + 1] = g = op(g, src[i + 1], last[i + 1]); \
210 dst[i + 2] = b = op(b, src[i + 2], last[i + 2]); \
213 dst[i + 3] = a = op(a, src[i + 3], last[i + 3]); \
217 #define UNROLL_FILTER(op) \
220 } else if (bpp == 2) { \
222 } else if (bpp == 3) { \
224 } else if (bpp == 4) { \
227 for (; i < size; i++) { \
228 dst[i] = op(dst[i - bpp], src[i], last[i]); \
231 /* NOTE: 'dst' can be equal to 'last' */
232 static void png_filter_row(PNGDSPContext *dsp, uint8_t *dst, int filter_type,
233 uint8_t *src, uint8_t *last, int size, int bpp)
235 int i, p, r, g, b, a;
237 switch (filter_type) {
238 case PNG_FILTER_VALUE_NONE:
239 memcpy(dst, src, size);
241 case PNG_FILTER_VALUE_SUB:
242 for (i = 0; i < bpp; i++)
246 for (; i < size; i += bpp) {
247 unsigned s = *(int *)(src + i);
248 p = ((s & 0x7f7f7f7f) + (p & 0x7f7f7f7f)) ^ ((s ^ p) & 0x80808080);
249 *(int *)(dst + i) = p;
252 #define OP_SUB(x, s, l) ((x) + (s))
253 UNROLL_FILTER(OP_SUB);
256 case PNG_FILTER_VALUE_UP:
257 dsp->add_bytes_l2(dst, src, last, size);
259 case PNG_FILTER_VALUE_AVG:
260 for (i = 0; i < bpp; i++) {
264 #define OP_AVG(x, s, l) (((((x) + (l)) >> 1) + (s)) & 0xff)
265 UNROLL_FILTER(OP_AVG);
267 case PNG_FILTER_VALUE_PAETH:
268 for (i = 0; i < bpp; i++) {
272 if (bpp > 2 && size > 4) {
273 /* would write off the end of the array if we let it process
274 * the last pixel with bpp=3 */
275 int w = (bpp & 3) ? size - 3 : size;
278 dsp->add_paeth_prediction(dst + i, src + i, last + i, size - i, bpp);
282 ff_add_png_paeth_prediction(dst + i, src + i, last + i, size - i, bpp);
287 /* This used to be called "deloco" in FFmpeg
288 * and is actually an inverse reversible colorspace transformation */
289 #define YUV2RGB(NAME, TYPE) \
290 static void deloco_ ## NAME(TYPE *dst, int size, int alpha) \
293 for (i = 0; i < size; i += 3 + alpha) { \
294 int g = dst [i + 1]; \
300 YUV2RGB(rgb8, uint8_t)
301 YUV2RGB(rgb16, uint16_t)
303 /* process exactly one decompressed row */
304 static void png_handle_row(PNGDecContext *s)
306 uint8_t *ptr, *last_row;
309 if (!s->interlace_type) {
310 ptr = s->image_buf + s->image_linesize * (s->y + s->y_offset) + s->x_offset * s->bpp;
312 last_row = s->last_row;
314 last_row = ptr - s->image_linesize;
316 png_filter_row(&s->dsp, ptr, s->crow_buf[0], s->crow_buf + 1,
317 last_row, s->row_size, s->bpp);
318 /* loco lags by 1 row so that it doesn't interfere with top prediction */
319 if (s->filter_type == PNG_FILTER_TYPE_LOCO && s->y > 0) {
320 if (s->bit_depth == 16) {
321 deloco_rgb16((uint16_t *)(ptr - s->image_linesize), s->row_size / 2,
322 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
324 deloco_rgb8(ptr - s->image_linesize, s->row_size,
325 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
329 if (s->y == s->cur_h) {
330 s->state |= PNG_ALLIMAGE;
331 if (s->filter_type == PNG_FILTER_TYPE_LOCO) {
332 if (s->bit_depth == 16) {
333 deloco_rgb16((uint16_t *)ptr, s->row_size / 2,
334 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
336 deloco_rgb8(ptr, s->row_size,
337 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
344 ptr = s->image_buf + s->image_linesize * (s->y + s->y_offset) + s->x_offset * s->bpp;
345 if ((ff_png_pass_ymask[s->pass] << (s->y & 7)) & 0x80) {
346 /* if we already read one row, it is time to stop to
347 * wait for the next one */
350 png_filter_row(&s->dsp, s->tmp_row, s->crow_buf[0], s->crow_buf + 1,
351 s->last_row, s->pass_row_size, s->bpp);
352 FFSWAP(uint8_t *, s->last_row, s->tmp_row);
353 FFSWAP(unsigned int, s->last_row_size, s->tmp_row_size);
356 if ((png_pass_dsp_ymask[s->pass] << (s->y & 7)) & 0x80) {
357 png_put_interlaced_row(ptr, s->cur_w, s->bits_per_pixel, s->pass,
358 s->color_type, s->last_row);
361 if (s->y == s->cur_h) {
362 memset(s->last_row, 0, s->row_size);
364 if (s->pass == NB_PASSES - 1) {
365 s->state |= PNG_ALLIMAGE;
370 s->pass_row_size = ff_png_pass_row_size(s->pass,
373 s->crow_size = s->pass_row_size + 1;
374 if (s->pass_row_size != 0)
376 /* skip pass if empty row */
385 static int png_decode_idat(PNGDecContext *s, int length)
388 s->zstream.avail_in = FFMIN(length, bytestream2_get_bytes_left(&s->gb));
389 s->zstream.next_in = (unsigned char *)s->gb.buffer;
390 bytestream2_skip(&s->gb, length);
392 /* decode one line if possible */
393 while (s->zstream.avail_in > 0) {
394 ret = inflate(&s->zstream, Z_PARTIAL_FLUSH);
395 if (ret != Z_OK && ret != Z_STREAM_END) {
396 av_log(s->avctx, AV_LOG_ERROR, "inflate returned error %d\n", ret);
397 return AVERROR_EXTERNAL;
399 if (s->zstream.avail_out == 0) {
400 if (!(s->state & PNG_ALLIMAGE)) {
403 s->zstream.avail_out = s->crow_size;
404 s->zstream.next_out = s->crow_buf;
406 if (ret == Z_STREAM_END && s->zstream.avail_in > 0) {
407 av_log(NULL, AV_LOG_WARNING,
408 "%d undecompressed bytes left in buffer\n", s->zstream.avail_in);
415 static int decode_zbuf(AVBPrint *bp, const uint8_t *data,
416 const uint8_t *data_end)
423 zstream.zalloc = ff_png_zalloc;
424 zstream.zfree = ff_png_zfree;
425 zstream.opaque = NULL;
426 if (inflateInit(&zstream) != Z_OK)
427 return AVERROR_EXTERNAL;
428 zstream.next_in = (unsigned char *)data;
429 zstream.avail_in = data_end - data;
430 av_bprint_init(bp, 0, -1);
432 while (zstream.avail_in > 0) {
433 av_bprint_get_buffer(bp, 1, &buf, &buf_size);
435 ret = AVERROR(ENOMEM);
438 zstream.next_out = buf;
439 zstream.avail_out = buf_size;
440 ret = inflate(&zstream, Z_PARTIAL_FLUSH);
441 if (ret != Z_OK && ret != Z_STREAM_END) {
442 ret = AVERROR_EXTERNAL;
445 bp->len += zstream.next_out - buf;
446 if (ret == Z_STREAM_END)
449 inflateEnd(&zstream);
450 bp->str[bp->len] = 0;
454 inflateEnd(&zstream);
455 av_bprint_finalize(bp, NULL);
459 static uint8_t *iso88591_to_utf8(const uint8_t *in, size_t size_in)
464 for (i = 0; i < size_in; i++)
465 extra += in[i] >= 0x80;
466 if (size_in == SIZE_MAX || extra > SIZE_MAX - size_in - 1)
468 q = out = av_malloc(size_in + extra + 1);
471 for (i = 0; i < size_in; i++) {
473 *(q++) = 0xC0 | (in[i] >> 6);
474 *(q++) = 0x80 | (in[i] & 0x3F);
483 static int decode_text_chunk(PNGDecContext *s, uint32_t length, int compressed,
487 const uint8_t *data = s->gb.buffer;
488 const uint8_t *data_end = data + length;
489 const uint8_t *keyword = data;
490 const uint8_t *keyword_end = memchr(keyword, 0, data_end - keyword);
491 uint8_t *kw_utf8 = NULL, *text, *txt_utf8 = NULL;
496 return AVERROR_INVALIDDATA;
497 data = keyword_end + 1;
500 if (data == data_end)
501 return AVERROR_INVALIDDATA;
504 return AVERROR_INVALIDDATA;
505 if ((ret = decode_zbuf(&bp, data, data_end)) < 0)
508 av_bprint_finalize(&bp, (char **)&text);
510 return AVERROR(ENOMEM);
512 text = (uint8_t *)data;
513 text_len = data_end - text;
516 kw_utf8 = iso88591_to_utf8(keyword, keyword_end - keyword);
517 txt_utf8 = iso88591_to_utf8(text, text_len);
520 if (!(kw_utf8 && txt_utf8)) {
523 return AVERROR(ENOMEM);
526 av_dict_set(dict, kw_utf8, txt_utf8,
527 AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
531 static int decode_ihdr_chunk(AVCodecContext *avctx, PNGDecContext *s,
535 return AVERROR_INVALIDDATA;
537 if (s->state & PNG_IDAT) {
538 av_log(avctx, AV_LOG_ERROR, "IHDR after IDAT\n");
539 return AVERROR_INVALIDDATA;
542 s->width = s->cur_w = bytestream2_get_be32(&s->gb);
543 s->height = s->cur_h = bytestream2_get_be32(&s->gb);
544 if (av_image_check_size(s->width, s->height, 0, avctx)) {
545 s->width = s->height = 0;
546 av_log(avctx, AV_LOG_ERROR, "Invalid image size\n");
547 return AVERROR_INVALIDDATA;
549 s->bit_depth = bytestream2_get_byte(&s->gb);
550 s->color_type = bytestream2_get_byte(&s->gb);
551 s->compression_type = bytestream2_get_byte(&s->gb);
552 s->filter_type = bytestream2_get_byte(&s->gb);
553 s->interlace_type = bytestream2_get_byte(&s->gb);
554 bytestream2_skip(&s->gb, 4); /* crc */
555 s->state |= PNG_IHDR;
556 if (avctx->debug & FF_DEBUG_PICT_INFO)
557 av_log(avctx, AV_LOG_DEBUG, "width=%d height=%d depth=%d color_type=%d "
558 "compression_type=%d filter_type=%d interlace_type=%d\n",
559 s->width, s->height, s->bit_depth, s->color_type,
560 s->compression_type, s->filter_type, s->interlace_type);
565 static int decode_phys_chunk(AVCodecContext *avctx, PNGDecContext *s)
567 if (s->state & PNG_IDAT) {
568 av_log(avctx, AV_LOG_ERROR, "pHYs after IDAT\n");
569 return AVERROR_INVALIDDATA;
571 avctx->sample_aspect_ratio.num = bytestream2_get_be32(&s->gb);
572 avctx->sample_aspect_ratio.den = bytestream2_get_be32(&s->gb);
573 if (avctx->sample_aspect_ratio.num < 0 || avctx->sample_aspect_ratio.den < 0)
574 avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
575 bytestream2_skip(&s->gb, 1); /* unit specifier */
576 bytestream2_skip(&s->gb, 4); /* crc */
581 static int decode_idat_chunk(AVCodecContext *avctx, PNGDecContext *s,
582 uint32_t length, AVFrame *p)
586 if (!(s->state & PNG_IHDR)) {
587 av_log(avctx, AV_LOG_ERROR, "IDAT without IHDR\n");
588 return AVERROR_INVALIDDATA;
590 if (!(s->state & PNG_IDAT)) {
591 /* init image info */
592 avctx->width = s->width;
593 avctx->height = s->height;
595 s->channels = ff_png_get_nb_channels(s->color_type);
596 s->bits_per_pixel = s->bit_depth * s->channels;
597 s->bpp = (s->bits_per_pixel + 7) >> 3;
598 s->row_size = (s->cur_w * s->bits_per_pixel + 7) >> 3;
600 if ((s->bit_depth == 2 || s->bit_depth == 4 || s->bit_depth == 8) &&
601 s->color_type == PNG_COLOR_TYPE_RGB) {
602 avctx->pix_fmt = AV_PIX_FMT_RGB24;
603 } else if ((s->bit_depth == 2 || s->bit_depth == 4 || s->bit_depth == 8) &&
604 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
605 avctx->pix_fmt = AV_PIX_FMT_RGBA;
606 } else if ((s->bit_depth == 2 || s->bit_depth == 4 || s->bit_depth == 8) &&
607 s->color_type == PNG_COLOR_TYPE_GRAY) {
608 avctx->pix_fmt = AV_PIX_FMT_GRAY8;
609 } else if (s->bit_depth == 16 &&
610 s->color_type == PNG_COLOR_TYPE_GRAY) {
611 avctx->pix_fmt = AV_PIX_FMT_GRAY16BE;
612 } else if (s->bit_depth == 16 &&
613 s->color_type == PNG_COLOR_TYPE_RGB) {
614 avctx->pix_fmt = AV_PIX_FMT_RGB48BE;
615 } else if (s->bit_depth == 16 &&
616 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
617 avctx->pix_fmt = AV_PIX_FMT_RGBA64BE;
618 } else if ((s->bits_per_pixel == 1 || s->bits_per_pixel == 2 || s->bits_per_pixel == 4 || s->bits_per_pixel == 8) &&
619 s->color_type == PNG_COLOR_TYPE_PALETTE) {
620 avctx->pix_fmt = AV_PIX_FMT_PAL8;
621 } else if (s->bit_depth == 1 && s->bits_per_pixel == 1) {
622 avctx->pix_fmt = AV_PIX_FMT_MONOBLACK;
623 } else if (s->bit_depth == 8 &&
624 s->color_type == PNG_COLOR_TYPE_GRAY_ALPHA) {
625 avctx->pix_fmt = AV_PIX_FMT_YA8;
626 } else if (s->bit_depth == 16 &&
627 s->color_type == PNG_COLOR_TYPE_GRAY_ALPHA) {
628 avctx->pix_fmt = AV_PIX_FMT_YA16BE;
630 av_log(avctx, AV_LOG_ERROR, "unsupported bit depth %d "
631 "and color type %d\n",
632 s->bit_depth, s->color_type);
633 return AVERROR_INVALIDDATA;
636 if ((ret = ff_thread_get_buffer(avctx, &s->picture, AV_GET_BUFFER_FLAG_REF)) < 0)
638 ff_thread_finish_setup(avctx);
640 p->pict_type = AV_PICTURE_TYPE_I;
642 p->interlaced_frame = !!s->interlace_type;
644 /* compute the compressed row size */
645 if (!s->interlace_type) {
646 s->crow_size = s->row_size + 1;
649 s->pass_row_size = ff_png_pass_row_size(s->pass,
652 s->crow_size = s->pass_row_size + 1;
654 ff_dlog(avctx, "row_size=%d crow_size =%d\n",
655 s->row_size, s->crow_size);
656 s->image_buf = p->data[0];
657 s->image_linesize = p->linesize[0];
658 /* copy the palette if needed */
659 if (avctx->pix_fmt == AV_PIX_FMT_PAL8)
660 memcpy(p->data[1], s->palette, 256 * sizeof(uint32_t));
661 /* empty row is used if differencing to the first row */
662 av_fast_padded_mallocz(&s->last_row, &s->last_row_size, s->row_size);
664 return AVERROR_INVALIDDATA;
665 if (s->interlace_type ||
666 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
667 av_fast_padded_malloc(&s->tmp_row, &s->tmp_row_size, s->row_size);
669 return AVERROR_INVALIDDATA;
672 av_fast_padded_malloc(&s->buffer, &s->buffer_size, s->row_size + 16);
674 return AVERROR(ENOMEM);
676 /* we want crow_buf+1 to be 16-byte aligned */
677 s->crow_buf = s->buffer + 15;
678 s->zstream.avail_out = s->crow_size;
679 s->zstream.next_out = s->crow_buf;
681 s->state |= PNG_IDAT;
682 if ((ret = png_decode_idat(s, length)) < 0)
684 bytestream2_skip(&s->gb, 4); /* crc */
689 static int decode_plte_chunk(AVCodecContext *avctx, PNGDecContext *s,
694 if ((length % 3) != 0 || length > 256 * 3)
695 return AVERROR_INVALIDDATA;
696 /* read the palette */
698 for (i = 0; i < n; i++) {
699 r = bytestream2_get_byte(&s->gb);
700 g = bytestream2_get_byte(&s->gb);
701 b = bytestream2_get_byte(&s->gb);
702 s->palette[i] = (0xFFU << 24) | (r << 16) | (g << 8) | b;
705 s->palette[i] = (0xFFU << 24);
706 s->state |= PNG_PLTE;
707 bytestream2_skip(&s->gb, 4); /* crc */
712 static int decode_trns_chunk(AVCodecContext *avctx, PNGDecContext *s,
717 /* read the transparency. XXX: Only palette mode supported */
718 if (s->color_type != PNG_COLOR_TYPE_PALETTE ||
720 !(s->state & PNG_PLTE))
721 return AVERROR_INVALIDDATA;
722 for (i = 0; i < length; i++) {
723 v = bytestream2_get_byte(&s->gb);
724 s->palette[i] = (s->palette[i] & 0x00ffffff) | (v << 24);
726 bytestream2_skip(&s->gb, 4); /* crc */
731 static void handle_small_bpp(PNGDecContext *s, AVFrame *p)
733 if (s->bits_per_pixel == 1 && s->color_type == PNG_COLOR_TYPE_PALETTE) {
735 uint8_t *pd = p->data[0];
736 for (j = 0; j < s->height; j++) {
738 for (k = 7; k >= 1; k--)
739 if ((s->width&7) >= k)
740 pd[8*i + k - 1] = (pd[i]>>8-k) & 1;
741 for (i--; i >= 0; i--) {
742 pd[8*i + 7]= pd[i] & 1;
743 pd[8*i + 6]= (pd[i]>>1) & 1;
744 pd[8*i + 5]= (pd[i]>>2) & 1;
745 pd[8*i + 4]= (pd[i]>>3) & 1;
746 pd[8*i + 3]= (pd[i]>>4) & 1;
747 pd[8*i + 2]= (pd[i]>>5) & 1;
748 pd[8*i + 1]= (pd[i]>>6) & 1;
749 pd[8*i + 0]= pd[i]>>7;
751 pd += s->image_linesize;
753 } else if (s->bits_per_pixel == 2) {
755 uint8_t *pd = p->data[0];
756 for (j = 0; j < s->height; j++) {
758 if (s->color_type == PNG_COLOR_TYPE_PALETTE) {
759 if ((s->width&3) >= 3) pd[4*i + 2]= (pd[i] >> 2) & 3;
760 if ((s->width&3) >= 2) pd[4*i + 1]= (pd[i] >> 4) & 3;
761 if ((s->width&3) >= 1) pd[4*i + 0]= pd[i] >> 6;
762 for (i--; i >= 0; i--) {
763 pd[4*i + 3]= pd[i] & 3;
764 pd[4*i + 2]= (pd[i]>>2) & 3;
765 pd[4*i + 1]= (pd[i]>>4) & 3;
766 pd[4*i + 0]= pd[i]>>6;
769 if ((s->width&3) >= 3) pd[4*i + 2]= ((pd[i]>>2) & 3)*0x55;
770 if ((s->width&3) >= 2) pd[4*i + 1]= ((pd[i]>>4) & 3)*0x55;
771 if ((s->width&3) >= 1) pd[4*i + 0]= ( pd[i]>>6 )*0x55;
772 for (i--; i >= 0; i--) {
773 pd[4*i + 3]= ( pd[i] & 3)*0x55;
774 pd[4*i + 2]= ((pd[i]>>2) & 3)*0x55;
775 pd[4*i + 1]= ((pd[i]>>4) & 3)*0x55;
776 pd[4*i + 0]= ( pd[i]>>6 )*0x55;
779 pd += s->image_linesize;
781 } else if (s->bits_per_pixel == 4) {
783 uint8_t *pd = p->data[0];
784 for (j = 0; j < s->height; j++) {
786 if (s->color_type == PNG_COLOR_TYPE_PALETTE) {
787 if (s->width&1) pd[2*i+0]= pd[i]>>4;
788 for (i--; i >= 0; i--) {
789 pd[2*i + 1] = pd[i] & 15;
790 pd[2*i + 0] = pd[i] >> 4;
793 if (s->width & 1) pd[2*i + 0]= (pd[i] >> 4) * 0x11;
794 for (i--; i >= 0; i--) {
795 pd[2*i + 1] = (pd[i] & 15) * 0x11;
796 pd[2*i + 0] = (pd[i] >> 4) * 0x11;
799 pd += s->image_linesize;
804 static int decode_fctl_chunk(AVCodecContext *avctx, PNGDecContext *s,
807 uint32_t sequence_number;
810 return AVERROR_INVALIDDATA;
812 sequence_number = bytestream2_get_be32(&s->gb);
813 s->cur_w = bytestream2_get_be32(&s->gb);
814 s->cur_h = bytestream2_get_be32(&s->gb);
815 s->x_offset = bytestream2_get_be32(&s->gb);
816 s->y_offset = bytestream2_get_be32(&s->gb);
817 bytestream2_skip(&s->gb, 4); /* delay_num (2), delay_den (2) */
818 s->dispose_op = bytestream2_get_byte(&s->gb);
819 s->blend_op = bytestream2_get_byte(&s->gb);
820 bytestream2_skip(&s->gb, 4); /* crc */
822 if (sequence_number == 0 &&
823 (s->cur_w != s->width ||
824 s->cur_h != s->height ||
827 s->cur_w <= 0 || s->cur_h <= 0 ||
828 s->x_offset < 0 || s->y_offset < 0 ||
829 s->cur_w > s->width - s->x_offset|| s->cur_h > s->height - s->y_offset)
830 return AVERROR_INVALIDDATA;
832 /* always (re)start with a clean frame */
833 if (sequence_number == 0) {
834 s->dispose_op = APNG_DISPOSE_OP_BACKGROUND;
838 if (s->frame_id == 1 && s->dispose_op == APNG_DISPOSE_OP_PREVIOUS)
839 /* previous for the second frame is the first frame */
840 s->dispose_op = APNG_DISPOSE_OP_NONE;
846 static void handle_p_frame_png(PNGDecContext *s, AVFrame *p)
849 uint8_t *pd = p->data[0];
850 uint8_t *pd_last = s->last_picture.f->data[0];
851 int ls = FFMIN(av_image_get_linesize(p->format, s->width, 0), s->width * s->bpp);
853 ff_thread_await_progress(&s->last_picture, INT_MAX, 0);
854 for (j = 0; j < s->height; j++) {
855 for (i = 0; i < ls; i++)
857 pd += s->image_linesize;
858 pd_last += s->image_linesize;
862 // divide by 255 and round to nearest
863 // apply a fast variant: (X+127)/255 = ((X+127)*257+257)>>16 = ((X+128)*257)>>16
864 #define FAST_DIV255(x) ((((x) + 128) * 257) >> 16)
866 static int handle_p_frame_apng(AVCodecContext *avctx, PNGDecContext *s,
870 uint8_t *pd = p->data[0];
871 uint8_t *pd_last = s->last_picture.f->data[0];
872 uint8_t *pd_last_region = s->dispose_op == APNG_DISPOSE_OP_PREVIOUS ?
873 s->previous_picture.f->data[0] : s->last_picture.f->data[0];
874 int ls = FFMIN(av_image_get_linesize(p->format, s->width, 0), s->width * s->bpp);
879 if (s->blend_op == APNG_BLEND_OP_OVER &&
880 avctx->pix_fmt != AV_PIX_FMT_RGBA && avctx->pix_fmt != AV_PIX_FMT_ARGB) {
881 avpriv_request_sample(avctx, "Blending with pixel format %s",
882 av_get_pix_fmt_name(avctx->pix_fmt));
883 return AVERROR_PATCHWELCOME;
886 ff_thread_await_progress(&s->last_picture, INT_MAX, 0);
887 if (s->dispose_op == APNG_DISPOSE_OP_PREVIOUS)
888 ff_thread_await_progress(&s->previous_picture, INT_MAX, 0);
890 for (j = 0; j < s->y_offset; j++) {
891 memcpy(pd, pd_last, ls);
892 pd += s->image_linesize;
893 pd_last += s->image_linesize;
896 if (s->dispose_op != APNG_DISPOSE_OP_BACKGROUND && s->blend_op == APNG_BLEND_OP_OVER) {
897 uint8_t ri, gi, bi, ai;
899 pd_last_region += s->y_offset * s->image_linesize;
900 if (avctx->pix_fmt == AV_PIX_FMT_RGBA) {
912 for (j = s->y_offset; j < s->y_offset + s->cur_h; j++) {
913 i = s->x_offset * s->bpp;
915 memcpy(pd, pd_last, i);
916 for (; i < (s->x_offset + s->cur_w) * s->bpp; i += s->bpp) {
917 uint8_t alpha = pd[i+ai];
919 /* output = alpha * foreground + (1-alpha) * background */
922 pd[i+ri] = pd_last_region[i+ri];
923 pd[i+gi] = pd_last_region[i+gi];
924 pd[i+bi] = pd_last_region[i+bi];
930 pd[i+ri] = FAST_DIV255(alpha * pd[i+ri] + (255 - alpha) * pd_last_region[i+ri]);
931 pd[i+gi] = FAST_DIV255(alpha * pd[i+gi] + (255 - alpha) * pd_last_region[i+gi]);
932 pd[i+bi] = FAST_DIV255(alpha * pd[i+bi] + (255 - alpha) * pd_last_region[i+bi]);
938 memcpy(pd+i, pd_last+i, ls - i);
939 pd += s->image_linesize;
940 pd_last += s->image_linesize;
941 pd_last_region += s->image_linesize;
944 for (j = s->y_offset; j < s->y_offset + s->cur_h; j++) {
945 int end_offset = (s->x_offset + s->cur_w) * s->bpp;
946 int end_len = ls - end_offset;
948 memcpy(pd, pd_last, s->x_offset * s->bpp);
950 memcpy(pd+end_offset, pd_last+end_offset, end_len);
951 pd += s->image_linesize;
952 pd_last += s->image_linesize;
956 for (j = s->y_offset + s->cur_h; j < s->height; j++) {
957 memcpy(pd, pd_last, ls);
958 pd += s->image_linesize;
959 pd_last += s->image_linesize;
965 static int decode_frame_common(AVCodecContext *avctx, PNGDecContext *s,
966 AVFrame *p, AVPacket *avpkt)
968 AVDictionary *metadata = NULL;
969 uint32_t tag, length;
970 int decode_next_dat = 0;
971 int ret = AVERROR_INVALIDDATA;
975 length = bytestream2_get_bytes_left(&s->gb);
977 if (CONFIG_APNG_DECODER && avctx->codec_id == AV_CODEC_ID_APNG && length == 0) {
978 if (!(s->state & PNG_IDAT))
983 av_log(avctx, AV_LOG_ERROR, "%d bytes left\n", length);
984 if ( s->state & PNG_ALLIMAGE
985 && avctx->strict_std_compliance <= FF_COMPLIANCE_NORMAL)
990 length = bytestream2_get_be32(&s->gb);
991 if (length > 0x7fffffff || length > bytestream2_get_bytes_left(&s->gb)) {
992 av_log(avctx, AV_LOG_ERROR, "chunk too big\n");
995 tag = bytestream2_get_le32(&s->gb);
996 if (avctx->debug & FF_DEBUG_STARTCODE)
997 av_log(avctx, AV_LOG_DEBUG, "png: tag=%c%c%c%c length=%u\n",
1000 ((tag >> 16) & 0xff),
1001 ((tag >> 24) & 0xff), length);
1003 case MKTAG('I', 'H', 'D', 'R'):
1004 if (decode_ihdr_chunk(avctx, s, length) < 0)
1007 case MKTAG('p', 'H', 'Y', 's'):
1008 if (decode_phys_chunk(avctx, s) < 0)
1011 case MKTAG('f', 'c', 'T', 'L'):
1012 if (!CONFIG_APNG_DECODER || avctx->codec_id != AV_CODEC_ID_APNG)
1014 if ((ret = decode_fctl_chunk(avctx, s, length)) < 0)
1016 decode_next_dat = 1;
1018 case MKTAG('f', 'd', 'A', 'T'):
1019 if (!CONFIG_APNG_DECODER || avctx->codec_id != AV_CODEC_ID_APNG)
1021 if (!decode_next_dat)
1023 bytestream2_get_be32(&s->gb);
1026 case MKTAG('I', 'D', 'A', 'T'):
1027 if (CONFIG_APNG_DECODER && avctx->codec_id == AV_CODEC_ID_APNG && !decode_next_dat)
1029 if (decode_idat_chunk(avctx, s, length, p) < 0)
1032 case MKTAG('P', 'L', 'T', 'E'):
1033 if (decode_plte_chunk(avctx, s, length) < 0)
1036 case MKTAG('t', 'R', 'N', 'S'):
1037 if (decode_trns_chunk(avctx, s, length) < 0)
1040 case MKTAG('t', 'E', 'X', 't'):
1041 if (decode_text_chunk(s, length, 0, &metadata) < 0)
1042 av_log(avctx, AV_LOG_WARNING, "Broken tEXt chunk\n");
1043 bytestream2_skip(&s->gb, length + 4);
1045 case MKTAG('z', 'T', 'X', 't'):
1046 if (decode_text_chunk(s, length, 1, &metadata) < 0)
1047 av_log(avctx, AV_LOG_WARNING, "Broken zTXt chunk\n");
1048 bytestream2_skip(&s->gb, length + 4);
1050 case MKTAG('I', 'E', 'N', 'D'):
1051 if (!(s->state & PNG_ALLIMAGE))
1052 av_log(avctx, AV_LOG_ERROR, "IEND without all image\n");
1053 if (!(s->state & (PNG_ALLIMAGE|PNG_IDAT))) {
1056 bytestream2_skip(&s->gb, 4); /* crc */
1061 bytestream2_skip(&s->gb, length + 4);
1067 if (s->bits_per_pixel <= 4)
1068 handle_small_bpp(s, p);
1070 /* handle p-frames only if a predecessor frame is available */
1071 ref = s->dispose_op == APNG_DISPOSE_OP_PREVIOUS ?
1072 s->previous_picture.f : s->last_picture.f;
1074 if ( !(avpkt->flags & AV_PKT_FLAG_KEY) && avctx->codec_tag != AV_RL32("MPNG")
1075 && ref->width == p->width
1076 && ref->height== p->height
1077 && ref->format== p->format
1079 if (CONFIG_PNG_DECODER && avctx->codec_id != AV_CODEC_ID_APNG)
1080 handle_p_frame_png(s, p);
1081 else if (CONFIG_APNG_DECODER &&
1082 avctx->codec_id == AV_CODEC_ID_APNG &&
1083 (ret = handle_p_frame_apng(avctx, s, p)) < 0)
1087 ff_thread_report_progress(&s->picture, INT_MAX, 0);
1089 av_frame_set_metadata(p, metadata);
1094 av_dict_free(&metadata);
1095 ff_thread_report_progress(&s->picture, INT_MAX, 0);
1099 #if CONFIG_PNG_DECODER
1100 static int decode_frame_png(AVCodecContext *avctx,
1101 void *data, int *got_frame,
1104 PNGDecContext *const s = avctx->priv_data;
1105 const uint8_t *buf = avpkt->data;
1106 int buf_size = avpkt->size;
1111 ff_thread_release_buffer(avctx, &s->last_picture);
1112 FFSWAP(ThreadFrame, s->picture, s->last_picture);
1115 bytestream2_init(&s->gb, buf, buf_size);
1117 /* check signature */
1118 sig = bytestream2_get_be64(&s->gb);
1119 if (sig != PNGSIG &&
1121 av_log(avctx, AV_LOG_ERROR, "Invalid PNG signature (%d).\n", buf_size);
1122 return AVERROR_INVALIDDATA;
1125 s->y = s->state = 0;
1128 s->zstream.zalloc = ff_png_zalloc;
1129 s->zstream.zfree = ff_png_zfree;
1130 s->zstream.opaque = NULL;
1131 ret = inflateInit(&s->zstream);
1133 av_log(avctx, AV_LOG_ERROR, "inflateInit returned error %d\n", ret);
1134 return AVERROR_EXTERNAL;
1137 if ((ret = decode_frame_common(avctx, s, p, avpkt)) < 0)
1140 if ((ret = av_frame_ref(data, s->picture.f)) < 0)
1145 ret = bytestream2_tell(&s->gb);
1147 inflateEnd(&s->zstream);
1153 #if CONFIG_APNG_DECODER
1154 static int decode_frame_apng(AVCodecContext *avctx,
1155 void *data, int *got_frame,
1158 PNGDecContext *const s = avctx->priv_data;
1163 ff_thread_release_buffer(avctx, &s->previous_picture);
1164 tmp = s->previous_picture;
1165 s->previous_picture = s->last_picture;
1166 s->last_picture = s->picture;
1170 if (!(s->state & PNG_IHDR)) {
1171 if (!avctx->extradata_size)
1172 return AVERROR_INVALIDDATA;
1174 /* only init fields, there is no zlib use in extradata */
1175 s->zstream.zalloc = ff_png_zalloc;
1176 s->zstream.zfree = ff_png_zfree;
1178 bytestream2_init(&s->gb, avctx->extradata, avctx->extradata_size);
1179 if ((ret = decode_frame_common(avctx, s, p, avpkt)) < 0)
1183 /* reset state for a new frame */
1184 if ((ret = inflateInit(&s->zstream)) != Z_OK) {
1185 av_log(avctx, AV_LOG_ERROR, "inflateInit returned error %d\n", ret);
1186 ret = AVERROR_EXTERNAL;
1190 s->state &= ~(PNG_IDAT | PNG_ALLIMAGE);
1191 bytestream2_init(&s->gb, avpkt->data, avpkt->size);
1192 if ((ret = decode_frame_common(avctx, s, p, avpkt)) < 0)
1195 if (!(s->state & PNG_ALLIMAGE))
1196 av_log(avctx, AV_LOG_WARNING, "Frame did not contain a complete image\n");
1197 if (!(s->state & (PNG_ALLIMAGE|PNG_IDAT))) {
1198 ret = AVERROR_INVALIDDATA;
1201 if ((ret = av_frame_ref(data, s->picture.f)) < 0)
1205 ret = bytestream2_tell(&s->gb);
1208 inflateEnd(&s->zstream);
1213 static int update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
1215 PNGDecContext *psrc = src->priv_data;
1216 PNGDecContext *pdst = dst->priv_data;
1222 pdst->frame_id = psrc->frame_id;
1224 ff_thread_release_buffer(dst, &pdst->picture);
1225 if (psrc->picture.f->data[0] &&
1226 (ret = ff_thread_ref_frame(&pdst->picture, &psrc->picture)) < 0)
1228 if (CONFIG_APNG_DECODER && dst->codec_id == AV_CODEC_ID_APNG) {
1229 ff_thread_release_buffer(dst, &pdst->last_picture);
1230 if (psrc->last_picture.f->data[0])
1231 return ff_thread_ref_frame(&pdst->last_picture, &psrc->last_picture);
1237 static av_cold int png_dec_init(AVCodecContext *avctx)
1239 PNGDecContext *s = avctx->priv_data;
1242 s->previous_picture.f = av_frame_alloc();
1243 s->last_picture.f = av_frame_alloc();
1244 s->picture.f = av_frame_alloc();
1245 if (!s->previous_picture.f || !s->last_picture.f || !s->picture.f) {
1246 av_frame_free(&s->previous_picture.f);
1247 av_frame_free(&s->last_picture.f);
1248 av_frame_free(&s->picture.f);
1249 return AVERROR(ENOMEM);
1252 if (!avctx->internal->is_copy) {
1253 avctx->internal->allocate_progress = 1;
1254 ff_pngdsp_init(&s->dsp);
1260 static av_cold int png_dec_end(AVCodecContext *avctx)
1262 PNGDecContext *s = avctx->priv_data;
1264 ff_thread_release_buffer(avctx, &s->previous_picture);
1265 av_frame_free(&s->previous_picture.f);
1266 ff_thread_release_buffer(avctx, &s->last_picture);
1267 av_frame_free(&s->last_picture.f);
1268 ff_thread_release_buffer(avctx, &s->picture);
1269 av_frame_free(&s->picture.f);
1270 av_freep(&s->buffer);
1272 av_freep(&s->last_row);
1273 s->last_row_size = 0;
1274 av_freep(&s->tmp_row);
1275 s->tmp_row_size = 0;
1280 #if CONFIG_APNG_DECODER
1281 AVCodec ff_apng_decoder = {
1283 .long_name = NULL_IF_CONFIG_SMALL("APNG (Animated Portable Network Graphics) image"),
1284 .type = AVMEDIA_TYPE_VIDEO,
1285 .id = AV_CODEC_ID_APNG,
1286 .priv_data_size = sizeof(PNGDecContext),
1287 .init = png_dec_init,
1288 .close = png_dec_end,
1289 .decode = decode_frame_apng,
1290 .init_thread_copy = ONLY_IF_THREADS_ENABLED(png_dec_init),
1291 .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
1292 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
1296 #if CONFIG_PNG_DECODER
1297 AVCodec ff_png_decoder = {
1299 .long_name = NULL_IF_CONFIG_SMALL("PNG (Portable Network Graphics) image"),
1300 .type = AVMEDIA_TYPE_VIDEO,
1301 .id = AV_CODEC_ID_PNG,
1302 .priv_data_size = sizeof(PNGDecContext),
1303 .init = png_dec_init,
1304 .close = png_dec_end,
1305 .decode = decode_frame_png,
1306 .init_thread_copy = ONLY_IF_THREADS_ENABLED(png_dec_init),
1307 .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
1308 .capabilities = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS /*| CODEC_CAP_DRAW_HORIZ_BAND*/,