]> git.sesse.net Git - ffmpeg/blob - libavcodec/pngdec.c
Merge commit '03ca6d70df192125a772dadd01acfe3905aa653f'
[ffmpeg] / libavcodec / pngdec.c
1 /*
2  * PNG image format
3  * Copyright (c) 2003 Fabrice Bellard
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 //#define DEBUG
23
24 #include "libavutil/bprint.h"
25 #include "libavutil/imgutils.h"
26 #include "avcodec.h"
27 #include "bytestream.h"
28 #include "internal.h"
29 #include "apng.h"
30 #include "png.h"
31 #include "pngdsp.h"
32 #include "thread.h"
33
34 #include <zlib.h>
35
36 typedef struct PNGDecContext {
37     PNGDSPContext dsp;
38     AVCodecContext *avctx;
39
40     GetByteContext gb;
41     ThreadFrame previous_picture;
42     ThreadFrame last_picture;
43     ThreadFrame picture;
44
45     int state;
46     int width, height;
47     int cur_w, cur_h;
48     int last_w, last_h;
49     int x_offset, y_offset;
50     int last_x_offset, last_y_offset;
51     uint8_t dispose_op, blend_op;
52     uint8_t last_dispose_op;
53     int bit_depth;
54     int color_type;
55     int compression_type;
56     int interlace_type;
57     int filter_type;
58     int channels;
59     int bits_per_pixel;
60     int bpp;
61     int has_trns;
62
63     uint8_t *image_buf;
64     int image_linesize;
65     uint32_t palette[256];
66     uint8_t *crow_buf;
67     uint8_t *last_row;
68     unsigned int last_row_size;
69     uint8_t *tmp_row;
70     unsigned int tmp_row_size;
71     uint8_t *buffer;
72     int buffer_size;
73     int pass;
74     int crow_size; /* compressed row size (include filter type) */
75     int row_size; /* decompressed row size */
76     int pass_row_size; /* decompress row size of the current pass */
77     int y;
78     z_stream zstream;
79 } PNGDecContext;
80
81 /* Mask to determine which pixels are valid in a pass */
82 static const uint8_t png_pass_mask[NB_PASSES] = {
83     0x01, 0x01, 0x11, 0x11, 0x55, 0x55, 0xff,
84 };
85
86 /* Mask to determine which y pixels can be written in a pass */
87 static const uint8_t png_pass_dsp_ymask[NB_PASSES] = {
88     0xff, 0xff, 0x0f, 0xff, 0x33, 0xff, 0x55,
89 };
90
91 /* Mask to determine which pixels to overwrite while displaying */
92 static const uint8_t png_pass_dsp_mask[NB_PASSES] = {
93     0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff
94 };
95
96 /* NOTE: we try to construct a good looking image at each pass. width
97  * is the original image width. We also do pixel format conversion at
98  * this stage */
99 static void png_put_interlaced_row(uint8_t *dst, int width,
100                                    int bits_per_pixel, int pass,
101                                    int color_type, const uint8_t *src)
102 {
103     int x, mask, dsp_mask, j, src_x, b, bpp;
104     uint8_t *d;
105     const uint8_t *s;
106
107     mask     = png_pass_mask[pass];
108     dsp_mask = png_pass_dsp_mask[pass];
109
110     switch (bits_per_pixel) {
111     case 1:
112         src_x = 0;
113         for (x = 0; x < width; x++) {
114             j = (x & 7);
115             if ((dsp_mask << j) & 0x80) {
116                 b = (src[src_x >> 3] >> (7 - (src_x & 7))) & 1;
117                 dst[x >> 3] &= 0xFF7F>>j;
118                 dst[x >> 3] |= b << (7 - j);
119             }
120             if ((mask << j) & 0x80)
121                 src_x++;
122         }
123         break;
124     case 2:
125         src_x = 0;
126         for (x = 0; x < width; x++) {
127             int j2 = 2 * (x & 3);
128             j = (x & 7);
129             if ((dsp_mask << j) & 0x80) {
130                 b = (src[src_x >> 2] >> (6 - 2*(src_x & 3))) & 3;
131                 dst[x >> 2] &= 0xFF3F>>j2;
132                 dst[x >> 2] |= b << (6 - j2);
133             }
134             if ((mask << j) & 0x80)
135                 src_x++;
136         }
137         break;
138     case 4:
139         src_x = 0;
140         for (x = 0; x < width; x++) {
141             int j2 = 4*(x&1);
142             j = (x & 7);
143             if ((dsp_mask << j) & 0x80) {
144                 b = (src[src_x >> 1] >> (4 - 4*(src_x & 1))) & 15;
145                 dst[x >> 1] &= 0xFF0F>>j2;
146                 dst[x >> 1] |= b << (4 - j2);
147             }
148             if ((mask << j) & 0x80)
149                 src_x++;
150         }
151         break;
152     default:
153         bpp = bits_per_pixel >> 3;
154         d   = dst;
155         s   = src;
156             for (x = 0; x < width; x++) {
157                 j = x & 7;
158                 if ((dsp_mask << j) & 0x80) {
159                     memcpy(d, s, bpp);
160                 }
161                 d += bpp;
162                 if ((mask << j) & 0x80)
163                     s += bpp;
164             }
165         break;
166     }
167 }
168
169 void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top,
170                                  int w, int bpp)
171 {
172     int i;
173     for (i = 0; i < w; i++) {
174         int a, b, c, p, pa, pb, pc;
175
176         a = dst[i - bpp];
177         b = top[i];
178         c = top[i - bpp];
179
180         p  = b - c;
181         pc = a - c;
182
183         pa = abs(p);
184         pb = abs(pc);
185         pc = abs(p + pc);
186
187         if (pa <= pb && pa <= pc)
188             p = a;
189         else if (pb <= pc)
190             p = b;
191         else
192             p = c;
193         dst[i] = p + src[i];
194     }
195 }
196
197 #define UNROLL1(bpp, op)                                                      \
198     {                                                                         \
199         r = dst[0];                                                           \
200         if (bpp >= 2)                                                         \
201             g = dst[1];                                                       \
202         if (bpp >= 3)                                                         \
203             b = dst[2];                                                       \
204         if (bpp >= 4)                                                         \
205             a = dst[3];                                                       \
206         for (; i <= size - bpp; i += bpp) {                                   \
207             dst[i + 0] = r = op(r, src[i + 0], last[i + 0]);                  \
208             if (bpp == 1)                                                     \
209                 continue;                                                     \
210             dst[i + 1] = g = op(g, src[i + 1], last[i + 1]);                  \
211             if (bpp == 2)                                                     \
212                 continue;                                                     \
213             dst[i + 2] = b = op(b, src[i + 2], last[i + 2]);                  \
214             if (bpp == 3)                                                     \
215                 continue;                                                     \
216             dst[i + 3] = a = op(a, src[i + 3], last[i + 3]);                  \
217         }                                                                     \
218     }
219
220 #define UNROLL_FILTER(op)                                                     \
221     if (bpp == 1) {                                                           \
222         UNROLL1(1, op)                                                        \
223     } else if (bpp == 2) {                                                    \
224         UNROLL1(2, op)                                                        \
225     } else if (bpp == 3) {                                                    \
226         UNROLL1(3, op)                                                        \
227     } else if (bpp == 4) {                                                    \
228         UNROLL1(4, op)                                                        \
229     }                                                                         \
230     for (; i < size; i++) {                                                   \
231         dst[i] = op(dst[i - bpp], src[i], last[i]);                           \
232     }
233
234 /* NOTE: 'dst' can be equal to 'last' */
235 static void png_filter_row(PNGDSPContext *dsp, uint8_t *dst, int filter_type,
236                            uint8_t *src, uint8_t *last, int size, int bpp)
237 {
238     int i, p, r, g, b, a;
239
240     switch (filter_type) {
241     case PNG_FILTER_VALUE_NONE:
242         memcpy(dst, src, size);
243         break;
244     case PNG_FILTER_VALUE_SUB:
245         for (i = 0; i < bpp; i++)
246             dst[i] = src[i];
247         if (bpp == 4) {
248             p = *(int *)dst;
249             for (; i < size; i += bpp) {
250                 unsigned s = *(int *)(src + i);
251                 p = ((s & 0x7f7f7f7f) + (p & 0x7f7f7f7f)) ^ ((s ^ p) & 0x80808080);
252                 *(int *)(dst + i) = p;
253             }
254         } else {
255 #define OP_SUB(x, s, l) ((x) + (s))
256             UNROLL_FILTER(OP_SUB);
257         }
258         break;
259     case PNG_FILTER_VALUE_UP:
260         dsp->add_bytes_l2(dst, src, last, size);
261         break;
262     case PNG_FILTER_VALUE_AVG:
263         for (i = 0; i < bpp; i++) {
264             p      = (last[i] >> 1);
265             dst[i] = p + src[i];
266         }
267 #define OP_AVG(x, s, l) (((((x) + (l)) >> 1) + (s)) & 0xff)
268         UNROLL_FILTER(OP_AVG);
269         break;
270     case PNG_FILTER_VALUE_PAETH:
271         for (i = 0; i < bpp; i++) {
272             p      = last[i];
273             dst[i] = p + src[i];
274         }
275         if (bpp > 2 && size > 4) {
276             /* would write off the end of the array if we let it process
277              * the last pixel with bpp=3 */
278             int w = (bpp & 3) ? size - 3 : size;
279
280             if (w > i) {
281                 dsp->add_paeth_prediction(dst + i, src + i, last + i, size - i, bpp);
282                 i = w;
283             }
284         }
285         ff_add_png_paeth_prediction(dst + i, src + i, last + i, size - i, bpp);
286         break;
287     }
288 }
289
290 /* This used to be called "deloco" in FFmpeg
291  * and is actually an inverse reversible colorspace transformation */
292 #define YUV2RGB(NAME, TYPE) \
293 static void deloco_ ## NAME(TYPE *dst, int size, int alpha) \
294 { \
295     int i; \
296     for (i = 0; i < size; i += 3 + alpha) { \
297         int g = dst [i + 1]; \
298         dst[i + 0] += g; \
299         dst[i + 2] += g; \
300     } \
301 }
302
303 YUV2RGB(rgb8, uint8_t)
304 YUV2RGB(rgb16, uint16_t)
305
306 /* process exactly one decompressed row */
307 static void png_handle_row(PNGDecContext *s)
308 {
309     uint8_t *ptr, *last_row;
310     int got_line;
311
312     if (!s->interlace_type) {
313         ptr = s->image_buf + s->image_linesize * (s->y + s->y_offset) + s->x_offset * s->bpp;
314         if (s->y == 0)
315             last_row = s->last_row;
316         else
317             last_row = ptr - s->image_linesize;
318
319         png_filter_row(&s->dsp, ptr, s->crow_buf[0], s->crow_buf + 1,
320                        last_row, s->row_size, s->bpp);
321         /* loco lags by 1 row so that it doesn't interfere with top prediction */
322         if (s->filter_type == PNG_FILTER_TYPE_LOCO && s->y > 0) {
323             if (s->bit_depth == 16) {
324                 deloco_rgb16((uint16_t *)(ptr - s->image_linesize), s->row_size / 2,
325                              s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
326             } else {
327                 deloco_rgb8(ptr - s->image_linesize, s->row_size,
328                             s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
329             }
330         }
331         s->y++;
332         if (s->y == s->cur_h) {
333             s->state |= PNG_ALLIMAGE;
334             if (s->filter_type == PNG_FILTER_TYPE_LOCO) {
335                 if (s->bit_depth == 16) {
336                     deloco_rgb16((uint16_t *)ptr, s->row_size / 2,
337                                  s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
338                 } else {
339                     deloco_rgb8(ptr, s->row_size,
340                                 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA);
341                 }
342             }
343         }
344     } else {
345         got_line = 0;
346         for (;;) {
347             ptr = s->image_buf + s->image_linesize * (s->y + s->y_offset) + s->x_offset * s->bpp;
348             if ((ff_png_pass_ymask[s->pass] << (s->y & 7)) & 0x80) {
349                 /* if we already read one row, it is time to stop to
350                  * wait for the next one */
351                 if (got_line)
352                     break;
353                 png_filter_row(&s->dsp, s->tmp_row, s->crow_buf[0], s->crow_buf + 1,
354                                s->last_row, s->pass_row_size, s->bpp);
355                 FFSWAP(uint8_t *, s->last_row, s->tmp_row);
356                 FFSWAP(unsigned int, s->last_row_size, s->tmp_row_size);
357                 got_line = 1;
358             }
359             if ((png_pass_dsp_ymask[s->pass] << (s->y & 7)) & 0x80) {
360                 png_put_interlaced_row(ptr, s->cur_w, s->bits_per_pixel, s->pass,
361                                        s->color_type, s->last_row);
362             }
363             s->y++;
364             if (s->y == s->cur_h) {
365                 memset(s->last_row, 0, s->row_size);
366                 for (;;) {
367                     if (s->pass == NB_PASSES - 1) {
368                         s->state |= PNG_ALLIMAGE;
369                         goto the_end;
370                     } else {
371                         s->pass++;
372                         s->y = 0;
373                         s->pass_row_size = ff_png_pass_row_size(s->pass,
374                                                                 s->bits_per_pixel,
375                                                                 s->cur_w);
376                         s->crow_size = s->pass_row_size + 1;
377                         if (s->pass_row_size != 0)
378                             break;
379                         /* skip pass if empty row */
380                     }
381                 }
382             }
383         }
384 the_end:;
385     }
386 }
387
388 static int png_decode_idat(PNGDecContext *s, int length)
389 {
390     int ret;
391     s->zstream.avail_in = FFMIN(length, bytestream2_get_bytes_left(&s->gb));
392     s->zstream.next_in  = (unsigned char *)s->gb.buffer;
393     bytestream2_skip(&s->gb, length);
394
395     /* decode one line if possible */
396     while (s->zstream.avail_in > 0) {
397         ret = inflate(&s->zstream, Z_PARTIAL_FLUSH);
398         if (ret != Z_OK && ret != Z_STREAM_END) {
399             av_log(s->avctx, AV_LOG_ERROR, "inflate returned error %d\n", ret);
400             return AVERROR_EXTERNAL;
401         }
402         if (s->zstream.avail_out == 0) {
403             if (!(s->state & PNG_ALLIMAGE)) {
404                 png_handle_row(s);
405             }
406             s->zstream.avail_out = s->crow_size;
407             s->zstream.next_out  = s->crow_buf;
408         }
409         if (ret == Z_STREAM_END && s->zstream.avail_in > 0) {
410             av_log(NULL, AV_LOG_WARNING,
411                    "%d undecompressed bytes left in buffer\n", s->zstream.avail_in);
412             return 0;
413         }
414     }
415     return 0;
416 }
417
418 static int decode_zbuf(AVBPrint *bp, const uint8_t *data,
419                        const uint8_t *data_end)
420 {
421     z_stream zstream;
422     unsigned char *buf;
423     unsigned buf_size;
424     int ret;
425
426     zstream.zalloc = ff_png_zalloc;
427     zstream.zfree  = ff_png_zfree;
428     zstream.opaque = NULL;
429     if (inflateInit(&zstream) != Z_OK)
430         return AVERROR_EXTERNAL;
431     zstream.next_in  = (unsigned char *)data;
432     zstream.avail_in = data_end - data;
433     av_bprint_init(bp, 0, -1);
434
435     while (zstream.avail_in > 0) {
436         av_bprint_get_buffer(bp, 1, &buf, &buf_size);
437         if (!buf_size) {
438             ret = AVERROR(ENOMEM);
439             goto fail;
440         }
441         zstream.next_out  = buf;
442         zstream.avail_out = buf_size;
443         ret = inflate(&zstream, Z_PARTIAL_FLUSH);
444         if (ret != Z_OK && ret != Z_STREAM_END) {
445             ret = AVERROR_EXTERNAL;
446             goto fail;
447         }
448         bp->len += zstream.next_out - buf;
449         if (ret == Z_STREAM_END)
450             break;
451     }
452     inflateEnd(&zstream);
453     bp->str[bp->len] = 0;
454     return 0;
455
456 fail:
457     inflateEnd(&zstream);
458     av_bprint_finalize(bp, NULL);
459     return ret;
460 }
461
462 static uint8_t *iso88591_to_utf8(const uint8_t *in, size_t size_in)
463 {
464     size_t extra = 0, i;
465     uint8_t *out, *q;
466
467     for (i = 0; i < size_in; i++)
468         extra += in[i] >= 0x80;
469     if (size_in == SIZE_MAX || extra > SIZE_MAX - size_in - 1)
470         return NULL;
471     q = out = av_malloc(size_in + extra + 1);
472     if (!out)
473         return NULL;
474     for (i = 0; i < size_in; i++) {
475         if (in[i] >= 0x80) {
476             *(q++) = 0xC0 | (in[i] >> 6);
477             *(q++) = 0x80 | (in[i] & 0x3F);
478         } else {
479             *(q++) = in[i];
480         }
481     }
482     *(q++) = 0;
483     return out;
484 }
485
486 static int decode_text_chunk(PNGDecContext *s, uint32_t length, int compressed,
487                              AVDictionary **dict)
488 {
489     int ret, method;
490     const uint8_t *data        = s->gb.buffer;
491     const uint8_t *data_end    = data + length;
492     const uint8_t *keyword     = data;
493     const uint8_t *keyword_end = memchr(keyword, 0, data_end - keyword);
494     uint8_t *kw_utf8 = NULL, *text, *txt_utf8 = NULL;
495     unsigned text_len;
496     AVBPrint bp;
497
498     if (!keyword_end)
499         return AVERROR_INVALIDDATA;
500     data = keyword_end + 1;
501
502     if (compressed) {
503         if (data == data_end)
504             return AVERROR_INVALIDDATA;
505         method = *(data++);
506         if (method)
507             return AVERROR_INVALIDDATA;
508         if ((ret = decode_zbuf(&bp, data, data_end)) < 0)
509             return ret;
510         text_len = bp.len;
511         av_bprint_finalize(&bp, (char **)&text);
512         if (!text)
513             return AVERROR(ENOMEM);
514     } else {
515         text = (uint8_t *)data;
516         text_len = data_end - text;
517     }
518
519     kw_utf8  = iso88591_to_utf8(keyword, keyword_end - keyword);
520     txt_utf8 = iso88591_to_utf8(text, text_len);
521     if (text != data)
522         av_free(text);
523     if (!(kw_utf8 && txt_utf8)) {
524         av_free(kw_utf8);
525         av_free(txt_utf8);
526         return AVERROR(ENOMEM);
527     }
528
529     av_dict_set(dict, kw_utf8, txt_utf8,
530                 AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
531     return 0;
532 }
533
534 static int decode_ihdr_chunk(AVCodecContext *avctx, PNGDecContext *s,
535                              uint32_t length)
536 {
537     if (length != 13)
538         return AVERROR_INVALIDDATA;
539
540     if (s->state & PNG_IDAT) {
541         av_log(avctx, AV_LOG_ERROR, "IHDR after IDAT\n");
542         return AVERROR_INVALIDDATA;
543     }
544
545     s->width  = bytestream2_get_be32(&s->gb);
546     s->height = bytestream2_get_be32(&s->gb);
547     if (av_image_check_size(s->width, s->height, 0, avctx)) {
548         s->width = s->height = 0;
549         av_log(avctx, AV_LOG_ERROR, "Invalid image size\n");
550         return AVERROR_INVALIDDATA;
551     }
552     if (s->cur_w == 0 && s->cur_h == 0) {
553         // Only set cur_w/h if update_thread_context() has not set it
554         s->cur_w = s->width;
555         s->cur_h = s->height;
556     }
557     s->bit_depth        = bytestream2_get_byte(&s->gb);
558     s->color_type       = bytestream2_get_byte(&s->gb);
559     s->compression_type = bytestream2_get_byte(&s->gb);
560     s->filter_type      = bytestream2_get_byte(&s->gb);
561     s->interlace_type   = bytestream2_get_byte(&s->gb);
562     bytestream2_skip(&s->gb, 4); /* crc */
563     s->state |= PNG_IHDR;
564     if (avctx->debug & FF_DEBUG_PICT_INFO)
565         av_log(avctx, AV_LOG_DEBUG, "width=%d height=%d depth=%d color_type=%d "
566                 "compression_type=%d filter_type=%d interlace_type=%d\n",
567                 s->width, s->height, s->bit_depth, s->color_type,
568                 s->compression_type, s->filter_type, s->interlace_type);
569
570     return 0;
571 }
572
573 static int decode_phys_chunk(AVCodecContext *avctx, PNGDecContext *s)
574 {
575     if (s->state & PNG_IDAT) {
576         av_log(avctx, AV_LOG_ERROR, "pHYs after IDAT\n");
577         return AVERROR_INVALIDDATA;
578     }
579     avctx->sample_aspect_ratio.num = bytestream2_get_be32(&s->gb);
580     avctx->sample_aspect_ratio.den = bytestream2_get_be32(&s->gb);
581     if (avctx->sample_aspect_ratio.num < 0 || avctx->sample_aspect_ratio.den < 0)
582         avctx->sample_aspect_ratio = (AVRational){ 0, 1 };
583     bytestream2_skip(&s->gb, 1); /* unit specifier */
584     bytestream2_skip(&s->gb, 4); /* crc */
585
586     return 0;
587 }
588
589 static int decode_idat_chunk(AVCodecContext *avctx, PNGDecContext *s,
590                              uint32_t length, AVFrame *p)
591 {
592     int ret;
593
594     if (!(s->state & PNG_IHDR)) {
595         av_log(avctx, AV_LOG_ERROR, "IDAT without IHDR\n");
596         return AVERROR_INVALIDDATA;
597     }
598     if (!(s->state & PNG_IDAT)) {
599         /* init image info */
600         avctx->width  = s->width;
601         avctx->height = s->height;
602
603         s->channels       = ff_png_get_nb_channels(s->color_type);
604         s->bits_per_pixel = s->bit_depth * s->channels;
605         s->bpp            = (s->bits_per_pixel + 7) >> 3;
606         s->row_size       = (s->cur_w * s->bits_per_pixel + 7) >> 3;
607
608         if ((s->bit_depth == 2 || s->bit_depth == 4 || s->bit_depth == 8) &&
609                 s->color_type == PNG_COLOR_TYPE_RGB) {
610             avctx->pix_fmt = AV_PIX_FMT_RGB24;
611         } else if ((s->bit_depth == 2 || s->bit_depth == 4 || s->bit_depth == 8) &&
612                 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
613             avctx->pix_fmt = AV_PIX_FMT_RGBA;
614         } else if ((s->bit_depth == 2 || s->bit_depth == 4 || s->bit_depth == 8) &&
615                 s->color_type == PNG_COLOR_TYPE_GRAY) {
616             avctx->pix_fmt = AV_PIX_FMT_GRAY8;
617         } else if (s->bit_depth == 16 &&
618                 s->color_type == PNG_COLOR_TYPE_GRAY) {
619             avctx->pix_fmt = AV_PIX_FMT_GRAY16BE;
620         } else if (s->bit_depth == 16 &&
621                 s->color_type == PNG_COLOR_TYPE_RGB) {
622             avctx->pix_fmt = AV_PIX_FMT_RGB48BE;
623         } else if (s->bit_depth == 16 &&
624                 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
625             avctx->pix_fmt = AV_PIX_FMT_RGBA64BE;
626         } else if ((s->bits_per_pixel == 1 || s->bits_per_pixel == 2 || s->bits_per_pixel == 4 || s->bits_per_pixel == 8) &&
627                 s->color_type == PNG_COLOR_TYPE_PALETTE) {
628             avctx->pix_fmt = AV_PIX_FMT_PAL8;
629         } else if (s->bit_depth == 1 && s->bits_per_pixel == 1 && avctx->codec_id != AV_CODEC_ID_APNG) {
630             avctx->pix_fmt = AV_PIX_FMT_MONOBLACK;
631         } else if (s->bit_depth == 8 &&
632                 s->color_type == PNG_COLOR_TYPE_GRAY_ALPHA) {
633             avctx->pix_fmt = AV_PIX_FMT_YA8;
634         } else if (s->bit_depth == 16 &&
635                 s->color_type == PNG_COLOR_TYPE_GRAY_ALPHA) {
636             avctx->pix_fmt = AV_PIX_FMT_YA16BE;
637         } else {
638             av_log(avctx, AV_LOG_ERROR, "unsupported bit depth %d "
639                     "and color type %d\n",
640                     s->bit_depth, s->color_type);
641             return AVERROR_INVALIDDATA;
642         }
643
644         if ((ret = ff_thread_get_buffer(avctx, &s->picture, AV_GET_BUFFER_FLAG_REF)) < 0)
645             return ret;
646         ff_thread_finish_setup(avctx);
647
648         p->pict_type        = AV_PICTURE_TYPE_I;
649         p->key_frame        = 1;
650         p->interlaced_frame = !!s->interlace_type;
651
652         /* compute the compressed row size */
653         if (!s->interlace_type) {
654             s->crow_size = s->row_size + 1;
655         } else {
656             s->pass          = 0;
657             s->pass_row_size = ff_png_pass_row_size(s->pass,
658                     s->bits_per_pixel,
659                     s->cur_w);
660             s->crow_size = s->pass_row_size + 1;
661         }
662         ff_dlog(avctx, "row_size=%d crow_size =%d\n",
663                 s->row_size, s->crow_size);
664         s->image_buf      = p->data[0];
665         s->image_linesize = p->linesize[0];
666         /* copy the palette if needed */
667         if (avctx->pix_fmt == AV_PIX_FMT_PAL8)
668             memcpy(p->data[1], s->palette, 256 * sizeof(uint32_t));
669         /* empty row is used if differencing to the first row */
670         av_fast_padded_mallocz(&s->last_row, &s->last_row_size, s->row_size);
671         if (!s->last_row)
672             return AVERROR_INVALIDDATA;
673         if (s->interlace_type ||
674                 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
675             av_fast_padded_malloc(&s->tmp_row, &s->tmp_row_size, s->row_size);
676             if (!s->tmp_row)
677                 return AVERROR_INVALIDDATA;
678         }
679         /* compressed row */
680         av_fast_padded_malloc(&s->buffer, &s->buffer_size, s->row_size + 16);
681         if (!s->buffer)
682             return AVERROR(ENOMEM);
683
684         /* we want crow_buf+1 to be 16-byte aligned */
685         s->crow_buf          = s->buffer + 15;
686         s->zstream.avail_out = s->crow_size;
687         s->zstream.next_out  = s->crow_buf;
688     }
689     s->state |= PNG_IDAT;
690     if ((ret = png_decode_idat(s, length)) < 0)
691         return ret;
692     bytestream2_skip(&s->gb, 4); /* crc */
693
694     return 0;
695 }
696
697 static int decode_plte_chunk(AVCodecContext *avctx, PNGDecContext *s,
698                              uint32_t length)
699 {
700     int n, i, r, g, b;
701
702     if ((length % 3) != 0 || length > 256 * 3)
703         return AVERROR_INVALIDDATA;
704     /* read the palette */
705     n = length / 3;
706     for (i = 0; i < n; i++) {
707         r = bytestream2_get_byte(&s->gb);
708         g = bytestream2_get_byte(&s->gb);
709         b = bytestream2_get_byte(&s->gb);
710         s->palette[i] = (0xFFU << 24) | (r << 16) | (g << 8) | b;
711     }
712     for (; i < 256; i++)
713         s->palette[i] = (0xFFU << 24);
714     s->state |= PNG_PLTE;
715     bytestream2_skip(&s->gb, 4);     /* crc */
716
717     return 0;
718 }
719
720 static int decode_trns_chunk(AVCodecContext *avctx, PNGDecContext *s,
721                              uint32_t length)
722 {
723     int v, i;
724
725     /* read the transparency. XXX: Only palette mode supported */
726     if (s->color_type != PNG_COLOR_TYPE_PALETTE ||
727             length > 256 ||
728             !(s->state & PNG_PLTE))
729         return AVERROR_INVALIDDATA;
730     for (i = 0; i < length; i++) {
731         v = bytestream2_get_byte(&s->gb);
732         s->palette[i] = (s->palette[i] & 0x00ffffff) | (v << 24);
733     }
734     bytestream2_skip(&s->gb, 4);     /* crc */
735
736     s->has_trns = 1;
737
738     return 0;
739 }
740
741 static void handle_small_bpp(PNGDecContext *s, AVFrame *p)
742 {
743     if (s->bits_per_pixel == 1 && s->color_type == PNG_COLOR_TYPE_PALETTE) {
744         int i, j, k;
745         uint8_t *pd = p->data[0];
746         for (j = 0; j < s->height; j++) {
747             i = s->width / 8;
748             for (k = 7; k >= 1; k--)
749                 if ((s->width&7) >= k)
750                     pd[8*i + k - 1] = (pd[i]>>8-k) & 1;
751             for (i--; i >= 0; i--) {
752                 pd[8*i + 7]=  pd[i]     & 1;
753                 pd[8*i + 6]= (pd[i]>>1) & 1;
754                 pd[8*i + 5]= (pd[i]>>2) & 1;
755                 pd[8*i + 4]= (pd[i]>>3) & 1;
756                 pd[8*i + 3]= (pd[i]>>4) & 1;
757                 pd[8*i + 2]= (pd[i]>>5) & 1;
758                 pd[8*i + 1]= (pd[i]>>6) & 1;
759                 pd[8*i + 0]=  pd[i]>>7;
760             }
761             pd += s->image_linesize;
762         }
763     } else if (s->bits_per_pixel == 2) {
764         int i, j;
765         uint8_t *pd = p->data[0];
766         for (j = 0; j < s->height; j++) {
767             i = s->width / 4;
768             if (s->color_type == PNG_COLOR_TYPE_PALETTE) {
769                 if ((s->width&3) >= 3) pd[4*i + 2]= (pd[i] >> 2) & 3;
770                 if ((s->width&3) >= 2) pd[4*i + 1]= (pd[i] >> 4) & 3;
771                 if ((s->width&3) >= 1) pd[4*i + 0]=  pd[i] >> 6;
772                 for (i--; i >= 0; i--) {
773                     pd[4*i + 3]=  pd[i]     & 3;
774                     pd[4*i + 2]= (pd[i]>>2) & 3;
775                     pd[4*i + 1]= (pd[i]>>4) & 3;
776                     pd[4*i + 0]=  pd[i]>>6;
777                 }
778             } else {
779                 if ((s->width&3) >= 3) pd[4*i + 2]= ((pd[i]>>2) & 3)*0x55;
780                 if ((s->width&3) >= 2) pd[4*i + 1]= ((pd[i]>>4) & 3)*0x55;
781                 if ((s->width&3) >= 1) pd[4*i + 0]= ( pd[i]>>6     )*0x55;
782                 for (i--; i >= 0; i--) {
783                     pd[4*i + 3]= ( pd[i]     & 3)*0x55;
784                     pd[4*i + 2]= ((pd[i]>>2) & 3)*0x55;
785                     pd[4*i + 1]= ((pd[i]>>4) & 3)*0x55;
786                     pd[4*i + 0]= ( pd[i]>>6     )*0x55;
787                 }
788             }
789             pd += s->image_linesize;
790         }
791     } else if (s->bits_per_pixel == 4) {
792         int i, j;
793         uint8_t *pd = p->data[0];
794         for (j = 0; j < s->height; j++) {
795             i = s->width/2;
796             if (s->color_type == PNG_COLOR_TYPE_PALETTE) {
797                 if (s->width&1) pd[2*i+0]= pd[i]>>4;
798                 for (i--; i >= 0; i--) {
799                     pd[2*i + 1] = pd[i] & 15;
800                     pd[2*i + 0] = pd[i] >> 4;
801                 }
802             } else {
803                 if (s->width & 1) pd[2*i + 0]= (pd[i] >> 4) * 0x11;
804                 for (i--; i >= 0; i--) {
805                     pd[2*i + 1] = (pd[i] & 15) * 0x11;
806                     pd[2*i + 0] = (pd[i] >> 4) * 0x11;
807                 }
808             }
809             pd += s->image_linesize;
810         }
811     }
812 }
813
814 static int decode_fctl_chunk(AVCodecContext *avctx, PNGDecContext *s,
815                              uint32_t length)
816 {
817     uint32_t sequence_number;
818
819     if (length != 26)
820         return AVERROR_INVALIDDATA;
821
822     s->last_w = s->cur_w;
823     s->last_h = s->cur_h;
824     s->last_x_offset = s->x_offset;
825     s->last_y_offset = s->y_offset;
826     s->last_dispose_op = s->dispose_op;
827
828     sequence_number = bytestream2_get_be32(&s->gb);
829     s->cur_w        = bytestream2_get_be32(&s->gb);
830     s->cur_h        = bytestream2_get_be32(&s->gb);
831     s->x_offset     = bytestream2_get_be32(&s->gb);
832     s->y_offset     = bytestream2_get_be32(&s->gb);
833     bytestream2_skip(&s->gb, 4); /* delay_num (2), delay_den (2) */
834     s->dispose_op   = bytestream2_get_byte(&s->gb);
835     s->blend_op     = bytestream2_get_byte(&s->gb);
836     bytestream2_skip(&s->gb, 4); /* crc */
837
838     if (sequence_number == 0 &&
839         (s->cur_w != s->width ||
840          s->cur_h != s->height ||
841          s->x_offset != 0 ||
842          s->y_offset != 0) ||
843         s->cur_w <= 0 || s->cur_h <= 0 ||
844         s->x_offset < 0 || s->y_offset < 0 ||
845         s->cur_w > s->width - s->x_offset|| s->cur_h > s->height - s->y_offset)
846             return AVERROR_INVALIDDATA;
847
848     if (sequence_number == 0 && s->dispose_op == APNG_DISPOSE_OP_PREVIOUS) {
849         // No previous frame to revert to for the first frame
850         // Spec says to just treat it as a APNG_DISPOSE_OP_BACKGROUND
851         s->dispose_op = APNG_DISPOSE_OP_BACKGROUND;
852     }
853
854     if (s->dispose_op == APNG_BLEND_OP_OVER && !s->has_trns && (
855             avctx->pix_fmt == AV_PIX_FMT_RGB24 ||
856             avctx->pix_fmt == AV_PIX_FMT_RGB48BE ||
857             avctx->pix_fmt == AV_PIX_FMT_PAL8 ||
858             avctx->pix_fmt == AV_PIX_FMT_GRAY8 ||
859             avctx->pix_fmt == AV_PIX_FMT_GRAY16BE ||
860             avctx->pix_fmt == AV_PIX_FMT_MONOBLACK
861         )) {
862         // APNG_DISPOSE_OP_OVER is the same as APNG_DISPOSE_OP_SOURCE when there is no alpha channel
863         s->dispose_op = APNG_BLEND_OP_SOURCE;
864     }
865
866     return 0;
867 }
868
869 static void handle_p_frame_png(PNGDecContext *s, AVFrame *p)
870 {
871     int i, j;
872     uint8_t *pd      = p->data[0];
873     uint8_t *pd_last = s->last_picture.f->data[0];
874     int ls = FFMIN(av_image_get_linesize(p->format, s->width, 0), s->width * s->bpp);
875
876     ff_thread_await_progress(&s->last_picture, INT_MAX, 0);
877     for (j = 0; j < s->height; j++) {
878         for (i = 0; i < ls; i++)
879             pd[i] += pd_last[i];
880         pd      += s->image_linesize;
881         pd_last += s->image_linesize;
882     }
883 }
884
885 // divide by 255 and round to nearest
886 // apply a fast variant: (X+127)/255 = ((X+127)*257+257)>>16 = ((X+128)*257)>>16
887 #define FAST_DIV255(x) ((((x) + 128) * 257) >> 16)
888
889 static int handle_p_frame_apng(AVCodecContext *avctx, PNGDecContext *s,
890                                AVFrame *p)
891 {
892     size_t x, y;
893     uint8_t *buffer = av_malloc(s->image_linesize * s->height);
894
895     if (!buffer)
896         return AVERROR(ENOMEM);
897
898     if (s->blend_op == APNG_BLEND_OP_OVER &&
899         avctx->pix_fmt != AV_PIX_FMT_RGBA &&
900         avctx->pix_fmt != AV_PIX_FMT_GRAY8A &&
901         avctx->pix_fmt != AV_PIX_FMT_PAL8) {
902         avpriv_request_sample(avctx, "Blending with pixel format %s",
903                               av_get_pix_fmt_name(avctx->pix_fmt));
904         return AVERROR_PATCHWELCOME;
905     }
906
907     // Copy the previous frame to the buffer
908     ff_thread_await_progress(&s->last_picture, INT_MAX, 0);
909     memcpy(buffer, s->last_picture.f->data[0], s->image_linesize * s->height);
910
911     // Do the disposal operation specified by the last frame on the frame
912     if (s->last_dispose_op == APNG_DISPOSE_OP_BACKGROUND) {
913         for (y = s->last_y_offset; y < s->last_y_offset + s->last_h; ++y)
914             memset(buffer + s->image_linesize * y + s->bpp * s->last_x_offset, 0, s->bpp * s->last_w);
915     } else if (s->last_dispose_op == APNG_DISPOSE_OP_PREVIOUS) {
916         ff_thread_await_progress(&s->previous_picture, INT_MAX, 0);
917         for (y = s->last_y_offset; y < s->last_y_offset + s->last_h; ++y) {
918             size_t row_start = s->image_linesize * y + s->bpp * s->last_x_offset;
919             memcpy(buffer + row_start, s->previous_picture.f->data[0] + row_start, s->bpp * s->last_w);
920         }
921     }
922
923     // Perform blending
924     if (s->blend_op == APNG_BLEND_OP_SOURCE) {
925         for (y = s->y_offset; y < s->y_offset + s->cur_h; ++y) {
926             size_t row_start = s->image_linesize * y + s->bpp * s->x_offset;
927             memcpy(buffer + row_start, p->data[0] + row_start, s->bpp * s->cur_w);
928         }
929     } else { // APNG_BLEND_OP_OVER
930         for (y = s->y_offset; y < s->y_offset + s->cur_h; ++y) {
931             uint8_t *foreground = p->data[0] + s->image_linesize * y + s->bpp * s->x_offset;
932             uint8_t *background = buffer + s->image_linesize * y + s->bpp * s->x_offset;
933             for (x = s->x_offset; x < s->x_offset + s->cur_w; ++x, foreground += s->bpp, background += s->bpp) {
934                 size_t b;
935                 uint8_t foreground_alpha, background_alpha, output_alpha;
936                 uint8_t output[4];
937
938                 // Since we might be blending alpha onto alpha, we use the following equations:
939                 // output_alpha = foreground_alpha + (1 - foreground_alpha) * background_alpha
940                 // output = (foreground_alpha * foreground + (1 - foreground_alpha) * background_alpha * background) / output_alpha
941
942                 switch (avctx->pix_fmt) {
943                 case AV_PIX_FMT_RGBA:
944                     foreground_alpha = foreground[3];
945                     background_alpha = background[3];
946                     break;
947
948                 case AV_PIX_FMT_GRAY8A:
949                     foreground_alpha = foreground[1];
950                     background_alpha = background[1];
951                     break;
952
953                 case AV_PIX_FMT_PAL8:
954                     foreground_alpha = s->palette[foreground[0]] >> 24;
955                     background_alpha = s->palette[background[0]] >> 24;
956                     break;
957                 }
958
959                 if (foreground_alpha == 0)
960                     continue;
961
962                 if (foreground_alpha == 255) {
963                     memcpy(background, foreground, s->bpp);
964                     continue;
965                 }
966
967                 if (avctx->pix_fmt == AV_PIX_FMT_PAL8) {
968                     // TODO: Alpha blending with PAL8 will likely need the entire image converted over to RGBA first
969                     avpriv_request_sample(avctx, "Alpha blending palette samples");
970                     background[0] = foreground[0];
971                     continue;
972                 }
973
974                 output_alpha = foreground_alpha + FAST_DIV255((255 - foreground_alpha) * background_alpha);
975
976                 for (b = 0; b < s->bpp - 1; ++b) {
977                     if (output_alpha == 0) {
978                         output[b] = 0;
979                     } else if (background_alpha == 255) {
980                         output[b] = FAST_DIV255(foreground_alpha * foreground[b] + (255 - foreground_alpha) * background[b]);
981                     } else {
982                         output[b] = (255 * foreground_alpha * foreground[b] + (255 - foreground_alpha) * background_alpha * background[b]) / (255 * output_alpha);
983                     }
984                 }
985                 output[b] = output_alpha;
986                 memcpy(background, output, s->bpp);
987             }
988         }
989     }
990
991     // Copy blended buffer into the frame and free
992     memcpy(p->data[0], buffer, s->image_linesize * s->height);
993     av_free(buffer);
994
995     return 0;
996 }
997
998 static int decode_frame_common(AVCodecContext *avctx, PNGDecContext *s,
999                                AVFrame *p, AVPacket *avpkt)
1000 {
1001     AVDictionary *metadata  = NULL;
1002     uint32_t tag, length;
1003     int decode_next_dat = 0;
1004     int ret;
1005
1006     for (;;) {
1007         length = bytestream2_get_bytes_left(&s->gb);
1008         if (length <= 0) {
1009             if (CONFIG_APNG_DECODER && avctx->codec_id == AV_CODEC_ID_APNG && length == 0) {
1010                 if (!(s->state & PNG_IDAT))
1011                     return 0;
1012                 else
1013                     goto exit_loop;
1014             }
1015             av_log(avctx, AV_LOG_ERROR, "%d bytes left\n", length);
1016             if (   s->state & PNG_ALLIMAGE
1017                 && avctx->strict_std_compliance <= FF_COMPLIANCE_NORMAL)
1018                 goto exit_loop;
1019             ret = AVERROR_INVALIDDATA;
1020             goto fail;
1021         }
1022
1023         length = bytestream2_get_be32(&s->gb);
1024         if (length > 0x7fffffff || length > bytestream2_get_bytes_left(&s->gb)) {
1025             av_log(avctx, AV_LOG_ERROR, "chunk too big\n");
1026             ret = AVERROR_INVALIDDATA;
1027             goto fail;
1028         }
1029         tag = bytestream2_get_le32(&s->gb);
1030         if (avctx->debug & FF_DEBUG_STARTCODE)
1031             av_log(avctx, AV_LOG_DEBUG, "png: tag=%c%c%c%c length=%u\n",
1032                 (tag & 0xff),
1033                 ((tag >> 8) & 0xff),
1034                 ((tag >> 16) & 0xff),
1035                 ((tag >> 24) & 0xff), length);
1036         switch (tag) {
1037         case MKTAG('I', 'H', 'D', 'R'):
1038             if ((ret = decode_ihdr_chunk(avctx, s, length)) < 0)
1039                 goto fail;
1040             break;
1041         case MKTAG('p', 'H', 'Y', 's'):
1042             if ((ret = decode_phys_chunk(avctx, s)) < 0)
1043                 goto fail;
1044             break;
1045         case MKTAG('f', 'c', 'T', 'L'):
1046             if (!CONFIG_APNG_DECODER || avctx->codec_id != AV_CODEC_ID_APNG)
1047                 goto skip_tag;
1048             if ((ret = decode_fctl_chunk(avctx, s, length)) < 0)
1049                 goto fail;
1050             decode_next_dat = 1;
1051             break;
1052         case MKTAG('f', 'd', 'A', 'T'):
1053             if (!CONFIG_APNG_DECODER || avctx->codec_id != AV_CODEC_ID_APNG)
1054                 goto skip_tag;
1055             if (!decode_next_dat) {
1056                 ret = AVERROR_INVALIDDATA;
1057                 goto fail;
1058             }
1059             bytestream2_get_be32(&s->gb);
1060             length -= 4;
1061             /* fallthrough */
1062         case MKTAG('I', 'D', 'A', 'T'):
1063             if (CONFIG_APNG_DECODER && avctx->codec_id == AV_CODEC_ID_APNG && !decode_next_dat)
1064                 goto skip_tag;
1065             if ((ret = decode_idat_chunk(avctx, s, length, p)) < 0)
1066                 goto fail;
1067             break;
1068         case MKTAG('P', 'L', 'T', 'E'):
1069             if (decode_plte_chunk(avctx, s, length) < 0)
1070                 goto skip_tag;
1071             break;
1072         case MKTAG('t', 'R', 'N', 'S'):
1073             if (decode_trns_chunk(avctx, s, length) < 0)
1074                 goto skip_tag;
1075             break;
1076         case MKTAG('t', 'E', 'X', 't'):
1077             if (decode_text_chunk(s, length, 0, &metadata) < 0)
1078                 av_log(avctx, AV_LOG_WARNING, "Broken tEXt chunk\n");
1079             bytestream2_skip(&s->gb, length + 4);
1080             break;
1081         case MKTAG('z', 'T', 'X', 't'):
1082             if (decode_text_chunk(s, length, 1, &metadata) < 0)
1083                 av_log(avctx, AV_LOG_WARNING, "Broken zTXt chunk\n");
1084             bytestream2_skip(&s->gb, length + 4);
1085             break;
1086         case MKTAG('I', 'E', 'N', 'D'):
1087             if (!(s->state & PNG_ALLIMAGE))
1088                 av_log(avctx, AV_LOG_ERROR, "IEND without all image\n");
1089             if (!(s->state & (PNG_ALLIMAGE|PNG_IDAT))) {
1090                 ret = AVERROR_INVALIDDATA;
1091                 goto fail;
1092             }
1093             bytestream2_skip(&s->gb, 4); /* crc */
1094             goto exit_loop;
1095         default:
1096             /* skip tag */
1097 skip_tag:
1098             bytestream2_skip(&s->gb, length + 4);
1099             break;
1100         }
1101     }
1102 exit_loop:
1103
1104     if (s->bits_per_pixel <= 4)
1105         handle_small_bpp(s, p);
1106
1107     /* handle p-frames only if a predecessor frame is available */
1108     if (s->last_picture.f->data[0]) {
1109         if (   !(avpkt->flags & AV_PKT_FLAG_KEY) && avctx->codec_tag != AV_RL32("MPNG")
1110             && s->last_picture.f->width == p->width
1111             && s->last_picture.f->height== p->height
1112             && s->last_picture.f->format== p->format
1113          ) {
1114             if (CONFIG_PNG_DECODER && avctx->codec_id != AV_CODEC_ID_APNG)
1115                 handle_p_frame_png(s, p);
1116             else if (CONFIG_APNG_DECODER &&
1117                      avctx->codec_id == AV_CODEC_ID_APNG &&
1118                      (ret = handle_p_frame_apng(avctx, s, p)) < 0)
1119                 goto fail;
1120         }
1121     }
1122     ff_thread_report_progress(&s->picture, INT_MAX, 0);
1123
1124     av_frame_set_metadata(p, metadata);
1125     metadata   = NULL;
1126     return 0;
1127
1128 fail:
1129     av_dict_free(&metadata);
1130     ff_thread_report_progress(&s->picture, INT_MAX, 0);
1131     return ret;
1132 }
1133
1134 #if CONFIG_PNG_DECODER
1135 static int decode_frame_png(AVCodecContext *avctx,
1136                         void *data, int *got_frame,
1137                         AVPacket *avpkt)
1138 {
1139     PNGDecContext *const s = avctx->priv_data;
1140     const uint8_t *buf     = avpkt->data;
1141     int buf_size           = avpkt->size;
1142     AVFrame *p;
1143     int64_t sig;
1144     int ret;
1145
1146     ff_thread_release_buffer(avctx, &s->last_picture);
1147     FFSWAP(ThreadFrame, s->picture, s->last_picture);
1148     p = s->picture.f;
1149
1150     bytestream2_init(&s->gb, buf, buf_size);
1151
1152     /* check signature */
1153     sig = bytestream2_get_be64(&s->gb);
1154     if (sig != PNGSIG &&
1155         sig != MNGSIG) {
1156         av_log(avctx, AV_LOG_ERROR, "Invalid PNG signature (%d).\n", buf_size);
1157         return AVERROR_INVALIDDATA;
1158     }
1159
1160     s->y = s->state = 0;
1161
1162     /* init the zlib */
1163     s->zstream.zalloc = ff_png_zalloc;
1164     s->zstream.zfree  = ff_png_zfree;
1165     s->zstream.opaque = NULL;
1166     ret = inflateInit(&s->zstream);
1167     if (ret != Z_OK) {
1168         av_log(avctx, AV_LOG_ERROR, "inflateInit returned error %d\n", ret);
1169         return AVERROR_EXTERNAL;
1170     }
1171
1172     if ((ret = decode_frame_common(avctx, s, p, avpkt)) < 0)
1173         goto the_end;
1174
1175     if ((ret = av_frame_ref(data, s->picture.f)) < 0)
1176         return ret;
1177
1178     *got_frame = 1;
1179
1180     ret = bytestream2_tell(&s->gb);
1181 the_end:
1182     inflateEnd(&s->zstream);
1183     s->crow_buf = NULL;
1184     return ret;
1185 }
1186 #endif
1187
1188 #if CONFIG_APNG_DECODER
1189 static int decode_frame_apng(AVCodecContext *avctx,
1190                         void *data, int *got_frame,
1191                         AVPacket *avpkt)
1192 {
1193     PNGDecContext *const s = avctx->priv_data;
1194     int ret;
1195     AVFrame *p;
1196     ThreadFrame tmp;
1197
1198     ff_thread_release_buffer(avctx, &s->previous_picture);
1199     tmp = s->previous_picture;
1200     s->previous_picture = s->last_picture;
1201     s->last_picture = s->picture;
1202     s->picture = tmp;
1203     p = s->picture.f;
1204
1205     if (!(s->state & PNG_IHDR)) {
1206         if (!avctx->extradata_size)
1207             return AVERROR_INVALIDDATA;
1208
1209         /* only init fields, there is no zlib use in extradata */
1210         s->zstream.zalloc = ff_png_zalloc;
1211         s->zstream.zfree  = ff_png_zfree;
1212
1213         bytestream2_init(&s->gb, avctx->extradata, avctx->extradata_size);
1214         if ((ret = decode_frame_common(avctx, s, p, avpkt)) < 0)
1215             goto end;
1216     }
1217
1218     /* reset state for a new frame */
1219     if ((ret = inflateInit(&s->zstream)) != Z_OK) {
1220         av_log(avctx, AV_LOG_ERROR, "inflateInit returned error %d\n", ret);
1221         ret = AVERROR_EXTERNAL;
1222         goto end;
1223     }
1224     s->y = 0;
1225     s->state &= ~(PNG_IDAT | PNG_ALLIMAGE);
1226     bytestream2_init(&s->gb, avpkt->data, avpkt->size);
1227     if ((ret = decode_frame_common(avctx, s, p, avpkt)) < 0)
1228         goto end;
1229
1230     if (!(s->state & PNG_ALLIMAGE))
1231         av_log(avctx, AV_LOG_WARNING, "Frame did not contain a complete image\n");
1232     if (!(s->state & (PNG_ALLIMAGE|PNG_IDAT))) {
1233         ret = AVERROR_INVALIDDATA;
1234         goto end;
1235     }
1236     if ((ret = av_frame_ref(data, s->picture.f)) < 0)
1237         goto end;
1238
1239     *got_frame = 1;
1240     ret = bytestream2_tell(&s->gb);
1241
1242 end:
1243     inflateEnd(&s->zstream);
1244     return ret;
1245 }
1246 #endif
1247
1248 static int update_thread_context(AVCodecContext *dst, const AVCodecContext *src)
1249 {
1250     PNGDecContext *psrc = src->priv_data;
1251     PNGDecContext *pdst = dst->priv_data;
1252     int ret;
1253
1254     if (dst == src)
1255         return 0;
1256
1257     ff_thread_release_buffer(dst, &pdst->picture);
1258     if (psrc->picture.f->data[0] &&
1259         (ret = ff_thread_ref_frame(&pdst->picture, &psrc->picture)) < 0)
1260         return ret;
1261     if (CONFIG_APNG_DECODER && dst->codec_id == AV_CODEC_ID_APNG) {
1262         pdst->cur_w = psrc->cur_w;
1263         pdst->cur_h = psrc->cur_h;
1264         pdst->x_offset = psrc->x_offset;
1265         pdst->y_offset = psrc->y_offset;
1266         pdst->dispose_op = psrc->dispose_op;
1267
1268         ff_thread_release_buffer(dst, &pdst->last_picture);
1269         if (psrc->last_picture.f->data[0])
1270             return ff_thread_ref_frame(&pdst->last_picture, &psrc->last_picture);
1271     }
1272
1273     return 0;
1274 }
1275
1276 static av_cold int png_dec_init(AVCodecContext *avctx)
1277 {
1278     PNGDecContext *s = avctx->priv_data;
1279
1280     avctx->color_range = AVCOL_RANGE_JPEG;
1281
1282     s->avctx = avctx;
1283     s->previous_picture.f = av_frame_alloc();
1284     s->last_picture.f = av_frame_alloc();
1285     s->picture.f = av_frame_alloc();
1286     if (!s->previous_picture.f || !s->last_picture.f || !s->picture.f) {
1287         av_frame_free(&s->previous_picture.f);
1288         av_frame_free(&s->last_picture.f);
1289         av_frame_free(&s->picture.f);
1290         return AVERROR(ENOMEM);
1291     }
1292
1293     if (!avctx->internal->is_copy) {
1294         avctx->internal->allocate_progress = 1;
1295         ff_pngdsp_init(&s->dsp);
1296     }
1297
1298     return 0;
1299 }
1300
1301 static av_cold int png_dec_end(AVCodecContext *avctx)
1302 {
1303     PNGDecContext *s = avctx->priv_data;
1304
1305     ff_thread_release_buffer(avctx, &s->previous_picture);
1306     av_frame_free(&s->previous_picture.f);
1307     ff_thread_release_buffer(avctx, &s->last_picture);
1308     av_frame_free(&s->last_picture.f);
1309     ff_thread_release_buffer(avctx, &s->picture);
1310     av_frame_free(&s->picture.f);
1311     av_freep(&s->buffer);
1312     s->buffer_size = 0;
1313     av_freep(&s->last_row);
1314     s->last_row_size = 0;
1315     av_freep(&s->tmp_row);
1316     s->tmp_row_size = 0;
1317
1318     return 0;
1319 }
1320
1321 #if CONFIG_APNG_DECODER
1322 AVCodec ff_apng_decoder = {
1323     .name           = "apng",
1324     .long_name      = NULL_IF_CONFIG_SMALL("APNG (Animated Portable Network Graphics) image"),
1325     .type           = AVMEDIA_TYPE_VIDEO,
1326     .id             = AV_CODEC_ID_APNG,
1327     .priv_data_size = sizeof(PNGDecContext),
1328     .init           = png_dec_init,
1329     .close          = png_dec_end,
1330     .decode         = decode_frame_apng,
1331     .init_thread_copy = ONLY_IF_THREADS_ENABLED(png_dec_init),
1332     .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
1333     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
1334 };
1335 #endif
1336
1337 #if CONFIG_PNG_DECODER
1338 AVCodec ff_png_decoder = {
1339     .name           = "png",
1340     .long_name      = NULL_IF_CONFIG_SMALL("PNG (Portable Network Graphics) image"),
1341     .type           = AVMEDIA_TYPE_VIDEO,
1342     .id             = AV_CODEC_ID_PNG,
1343     .priv_data_size = sizeof(PNGDecContext),
1344     .init           = png_dec_init,
1345     .close          = png_dec_end,
1346     .decode         = decode_frame_png,
1347     .init_thread_copy = ONLY_IF_THREADS_ENABLED(png_dec_init),
1348     .update_thread_context = ONLY_IF_THREADS_ENABLED(update_thread_context),
1349     .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
1350 };
1351 #endif