comparison png.c @ 2342:8b6668325ff8 libavcodec

porting png support from -f image to -f image2
author michael
date Tue, 09 Nov 2004 23:31:46 +0000
parents
children c6280d48be02
comparison
equal deleted inserted replaced
2341:d9c9b42767da 2342:8b6668325ff8
1 /*
2 * PNG image format
3 * Copyright (c) 2003 Fabrice Bellard.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19 #include "avcodec.h"
20
21 /* TODO:
22 * - add 2, 4 and 16 bit depth support
23 * - use filters when generating a png (better compression)
24 */
25
26 #ifdef CONFIG_ZLIB
27 #include <zlib.h>
28
29 //#define DEBUG
30
31 #define PNG_COLOR_MASK_PALETTE 1
32 #define PNG_COLOR_MASK_COLOR 2
33 #define PNG_COLOR_MASK_ALPHA 4
34
35 #define PNG_COLOR_TYPE_GRAY 0
36 #define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)
37 #define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR)
38 #define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA)
39 #define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA)
40
41 #define PNG_FILTER_VALUE_NONE 0
42 #define PNG_FILTER_VALUE_SUB 1
43 #define PNG_FILTER_VALUE_UP 2
44 #define PNG_FILTER_VALUE_AVG 3
45 #define PNG_FILTER_VALUE_PAETH 4
46
47 #define PNG_IHDR 0x0001
48 #define PNG_IDAT 0x0002
49 #define PNG_ALLIMAGE 0x0004
50 #define PNG_PLTE 0x0008
51
52 #define NB_PASSES 7
53
54 #define IOBUF_SIZE 4096
55
56 typedef struct PNGContext {
57 uint8_t *bytestream;
58 uint8_t *bytestream_start;
59 uint8_t *bytestream_end;
60 AVFrame picture;
61
62 int state;
63 int width, height;
64 int bit_depth;
65 int color_type;
66 int compression_type;
67 int interlace_type;
68 int filter_type;
69 int channels;
70 int bits_per_pixel;
71 int bpp;
72
73 uint8_t *image_buf;
74 int image_linesize;
75 uint32_t palette[256];
76 uint8_t *crow_buf;
77 uint8_t *last_row;
78 uint8_t *tmp_row;
79 int pass;
80 int crow_size; /* compressed row size (include filter type) */
81 int row_size; /* decompressed row size */
82 int pass_row_size; /* decompress row size of the current pass */
83 int y;
84 z_stream zstream;
85 uint8_t buf[IOBUF_SIZE];
86 } PNGContext;
87
88 static unsigned int get32(uint8_t **b){
89 (*b) += 4;
90 return ((*b)[-4]<<24) + ((*b)[-3]<<16) + ((*b)[-2]<<8) + (*b)[-1];
91 }
92
93 static void put32(uint8_t **b, unsigned int v){
94 *(*b)++= v>>24;
95 *(*b)++= v>>16;
96 *(*b)++= v>>8;
97 *(*b)++= v;
98 }
99
100 static const uint8_t pngsig[8] = {137, 80, 78, 71, 13, 10, 26, 10};
101
102 /* Mask to determine which y pixels are valid in a pass */
103 static const uint8_t png_pass_ymask[NB_PASSES] = {
104 0x80, 0x80, 0x08, 0x88, 0x22, 0xaa, 0x55,
105 };
106
107 /* Mask to determine which y pixels can be written in a pass */
108 static const uint8_t png_pass_dsp_ymask[NB_PASSES] = {
109 0xff, 0xff, 0x0f, 0xcc, 0x33, 0xff, 0x55,
110 };
111
112 /* minimum x value */
113 static const uint8_t png_pass_xmin[NB_PASSES] = {
114 0, 4, 0, 2, 0, 1, 0
115 };
116
117 /* x shift to get row width */
118 static const uint8_t png_pass_xshift[NB_PASSES] = {
119 3, 3, 2, 2, 1, 1, 0
120 };
121
122 /* Mask to determine which pixels are valid in a pass */
123 static const uint8_t png_pass_mask[NB_PASSES] = {
124 0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff
125 };
126
127 /* Mask to determine which pixels to overwrite while displaying */
128 static const uint8_t png_pass_dsp_mask[NB_PASSES] = {
129 0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff
130 };
131 #if 0
132 static int png_probe(AVProbeData *pd)
133 {
134 if (pd->buf_size >= 8 &&
135 memcmp(pd->buf, pngsig, 8) == 0)
136 return AVPROBE_SCORE_MAX;
137 else
138 return 0;
139 }
140 #endif
141 static void *png_zalloc(void *opaque, unsigned int items, unsigned int size)
142 {
143 return av_malloc(items * size);
144 }
145
146 static void png_zfree(void *opaque, void *ptr)
147 {
148 av_free(ptr);
149 }
150
151 static int png_get_nb_channels(int color_type)
152 {
153 int channels;
154 channels = 1;
155 if ((color_type & (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE)) ==
156 PNG_COLOR_MASK_COLOR)
157 channels = 3;
158 if (color_type & PNG_COLOR_MASK_ALPHA)
159 channels++;
160 return channels;
161 }
162
163 /* compute the row size of an interleaved pass */
164 static int png_pass_row_size(int pass, int bits_per_pixel, int width)
165 {
166 int shift, xmin, pass_width;
167
168 xmin = png_pass_xmin[pass];
169 if (width <= xmin)
170 return 0;
171 shift = png_pass_xshift[pass];
172 pass_width = (width - xmin + (1 << shift) - 1) >> shift;
173 return (pass_width * bits_per_pixel + 7) >> 3;
174 }
175
176 /* NOTE: we try to construct a good looking image at each pass. width
177 is the original image width. We also do pixel format convertion at
178 this stage */
179 static void png_put_interlaced_row(uint8_t *dst, int width,
180 int bits_per_pixel, int pass,
181 int color_type, const uint8_t *src)
182 {
183 int x, mask, dsp_mask, j, src_x, b, bpp;
184 uint8_t *d;
185 const uint8_t *s;
186
187 mask = png_pass_mask[pass];
188 dsp_mask = png_pass_dsp_mask[pass];
189 switch(bits_per_pixel) {
190 case 1:
191 /* we must intialize the line to zero before writing to it */
192 if (pass == 0)
193 memset(dst, 0, (width + 7) >> 3);
194 src_x = 0;
195 for(x = 0; x < width; x++) {
196 j = (x & 7);
197 if ((dsp_mask << j) & 0x80) {
198 b = (src[src_x >> 3] >> (7 - (src_x & 7))) & 1;
199 dst[x >> 3] |= b << (7 - j);
200 }
201 if ((mask << j) & 0x80)
202 src_x++;
203 }
204 break;
205 default:
206 bpp = bits_per_pixel >> 3;
207 d = dst;
208 s = src;
209 if (color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
210 for(x = 0; x < width; x++) {
211 j = x & 7;
212 if ((dsp_mask << j) & 0x80) {
213 *(uint32_t *)d = (s[3] << 24) | (s[0] << 16) | (s[1] << 8) | s[2];
214 }
215 d += bpp;
216 if ((mask << j) & 0x80)
217 s += bpp;
218 }
219 } else {
220 for(x = 0; x < width; x++) {
221 j = x & 7;
222 if ((dsp_mask << j) & 0x80) {
223 memcpy(d, s, bpp);
224 }
225 d += bpp;
226 if ((mask << j) & 0x80)
227 s += bpp;
228 }
229 }
230 break;
231 }
232 }
233
234 static void png_get_interlaced_row(uint8_t *dst, int row_size,
235 int bits_per_pixel, int pass,
236 const uint8_t *src, int width)
237 {
238 int x, mask, dst_x, j, b, bpp;
239 uint8_t *d;
240 const uint8_t *s;
241
242 mask = png_pass_mask[pass];
243 switch(bits_per_pixel) {
244 case 1:
245 memset(dst, 0, row_size);
246 dst_x = 0;
247 for(x = 0; x < width; x++) {
248 j = (x & 7);
249 if ((mask << j) & 0x80) {
250 b = (src[x >> 3] >> (7 - j)) & 1;
251 dst[dst_x >> 3] |= b << (7 - (dst_x & 7));
252 dst_x++;
253 }
254 }
255 break;
256 default:
257 bpp = bits_per_pixel >> 3;
258 d = dst;
259 s = src;
260 for(x = 0; x < width; x++) {
261 j = x & 7;
262 if ((mask << j) & 0x80) {
263 memcpy(d, s, bpp);
264 d += bpp;
265 }
266 s += bpp;
267 }
268 break;
269 }
270 }
271
272 /* XXX: optimize */
273 /* NOTE: 'dst' can be equal to 'last' */
274 static void png_filter_row(uint8_t *dst, int filter_type,
275 uint8_t *src, uint8_t *last, int size, int bpp)
276 {
277 int i, p;
278
279 switch(filter_type) {
280 case PNG_FILTER_VALUE_NONE:
281 memcpy(dst, src, size);
282 break;
283 case PNG_FILTER_VALUE_SUB:
284 for(i = 0; i < bpp; i++) {
285 dst[i] = src[i];
286 }
287 for(i = bpp; i < size; i++) {
288 p = dst[i - bpp];
289 dst[i] = p + src[i];
290 }
291 break;
292 case PNG_FILTER_VALUE_UP:
293 for(i = 0; i < size; i++) {
294 p = last[i];
295 dst[i] = p + src[i];
296 }
297 break;
298 case PNG_FILTER_VALUE_AVG:
299 for(i = 0; i < bpp; i++) {
300 p = (last[i] >> 1);
301 dst[i] = p + src[i];
302 }
303 for(i = bpp; i < size; i++) {
304 p = ((dst[i - bpp] + last[i]) >> 1);
305 dst[i] = p + src[i];
306 }
307 break;
308 case PNG_FILTER_VALUE_PAETH:
309 for(i = 0; i < bpp; i++) {
310 p = last[i];
311 dst[i] = p + src[i];
312 }
313 for(i = bpp; i < size; i++) {
314 int a, b, c, pa, pb, pc;
315
316 a = dst[i - bpp];
317 b = last[i];
318 c = last[i - bpp];
319
320 p = b - c;
321 pc = a - c;
322
323 pa = abs(p);
324 pb = abs(pc);
325 pc = abs(p + pc);
326
327 if (pa <= pb && pa <= pc)
328 p = a;
329 else if (pb <= pc)
330 p = b;
331 else
332 p = c;
333 dst[i] = p + src[i];
334 }
335 break;
336 }
337 }
338
339 static void convert_from_rgba32(uint8_t *dst, const uint8_t *src, int width)
340 {
341 uint8_t *d;
342 int j;
343 unsigned int v;
344
345 d = dst;
346 for(j = 0; j < width; j++) {
347 v = ((uint32_t *)src)[j];
348 d[0] = v >> 16;
349 d[1] = v >> 8;
350 d[2] = v;
351 d[3] = v >> 24;
352 d += 4;
353 }
354 }
355
356 static void convert_to_rgba32(uint8_t *dst, const uint8_t *src, int width)
357 {
358 int j;
359 unsigned int r, g, b, a;
360
361 for(j = 0;j < width; j++) {
362 r = src[0];
363 g = src[1];
364 b = src[2];
365 a = src[3];
366 *(uint32_t *)dst = (a << 24) | (r << 16) | (g << 8) | b;
367 dst += 4;
368 src += 4;
369 }
370 }
371
372 /* process exactly one decompressed row */
373 static void png_handle_row(PNGContext *s)
374 {
375 uint8_t *ptr, *last_row;
376 int got_line;
377
378 if (!s->interlace_type) {
379 ptr = s->image_buf + s->image_linesize * s->y;
380 /* need to swap bytes correctly for RGB_ALPHA */
381 if (s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
382 png_filter_row(s->tmp_row, s->crow_buf[0], s->crow_buf + 1,
383 s->last_row, s->row_size, s->bpp);
384 memcpy(s->last_row, s->tmp_row, s->row_size);
385 convert_to_rgba32(ptr, s->tmp_row, s->width);
386 } else {
387 /* in normal case, we avoid one copy */
388 if (s->y == 0)
389 last_row = s->last_row;
390 else
391 last_row = ptr - s->image_linesize;
392
393 png_filter_row(ptr, s->crow_buf[0], s->crow_buf + 1,
394 last_row, s->row_size, s->bpp);
395 }
396 s->y++;
397 if (s->y == s->height) {
398 s->state |= PNG_ALLIMAGE;
399 }
400 } else {
401 got_line = 0;
402 for(;;) {
403 ptr = s->image_buf + s->image_linesize * s->y;
404 if ((png_pass_ymask[s->pass] << (s->y & 7)) & 0x80) {
405 /* if we already read one row, it is time to stop to
406 wait for the next one */
407 if (got_line)
408 break;
409 png_filter_row(s->tmp_row, s->crow_buf[0], s->crow_buf + 1,
410 s->last_row, s->pass_row_size, s->bpp);
411 memcpy(s->last_row, s->tmp_row, s->pass_row_size);
412 got_line = 1;
413 }
414 if ((png_pass_dsp_ymask[s->pass] << (s->y & 7)) & 0x80) {
415 /* NOTE: rgba32 is handled directly in png_put_interlaced_row */
416 png_put_interlaced_row(ptr, s->width, s->bits_per_pixel, s->pass,
417 s->color_type, s->last_row);
418 }
419 s->y++;
420 if (s->y == s->height) {
421 for(;;) {
422 if (s->pass == NB_PASSES - 1) {
423 s->state |= PNG_ALLIMAGE;
424 goto the_end;
425 } else {
426 s->pass++;
427 s->y = 0;
428 s->pass_row_size = png_pass_row_size(s->pass,
429 s->bits_per_pixel,
430 s->width);
431 s->crow_size = s->pass_row_size + 1;
432 if (s->pass_row_size != 0)
433 break;
434 /* skip pass if empty row */
435 }
436 }
437 }
438 }
439 the_end: ;
440 }
441 }
442
443 static int png_decode_idat(PNGContext *s, int length)
444 {
445 int ret;
446 s->zstream.avail_in = length;
447 s->zstream.next_in = s->bytestream;
448 s->bytestream += length;
449
450 if(s->bytestream > s->bytestream_end)
451 return -1;
452
453 /* decode one line if possible */
454 while (s->zstream.avail_in > 0) {
455 ret = inflate(&s->zstream, Z_PARTIAL_FLUSH);
456 if (ret != Z_OK && ret != Z_STREAM_END) {
457 return -1;
458 }
459 if (s->zstream.avail_out == 0) {
460 if (!(s->state & PNG_ALLIMAGE)) {
461 png_handle_row(s);
462 }
463 s->zstream.avail_out = s->crow_size;
464 s->zstream.next_out = s->crow_buf;
465 }
466 }
467 return 0;
468 }
469
470 static int decode_frame(AVCodecContext *avctx,
471 void *data, int *data_size,
472 uint8_t *buf, int buf_size)
473 {
474 PNGContext * const s = avctx->priv_data;
475 AVFrame *picture = data;
476 AVFrame * const p= (AVFrame*)&s->picture;
477 uint32_t tag, length;
478 int ret, crc;
479
480 /* special case for last picture */
481 if (buf_size == 0) {
482 return 0;
483 }
484
485 s->bytestream_start=
486 s->bytestream= buf;
487 s->bytestream_end= buf + buf_size;
488
489 /* check signature */
490 if (memcmp(s->bytestream, pngsig, 8) != 0)
491 return -1;
492 s->bytestream+= 8;
493 s->y=
494 s->state=0;
495 // memset(s, 0, sizeof(PNGContext));
496 /* init the zlib */
497 s->zstream.zalloc = png_zalloc;
498 s->zstream.zfree = png_zfree;
499 s->zstream.opaque = NULL;
500 ret = inflateInit(&s->zstream);
501 if (ret != Z_OK)
502 return -1;
503 for(;;) {
504 if (s->bytestream >= s->bytestream_end)
505 goto fail;
506 length = get32(&s->bytestream);
507 if (length > 0x7fffffff)
508 goto fail;
509 tag = bswap_32(get32(&s->bytestream));
510 #ifdef DEBUG
511 printf("png: tag=%c%c%c%c length=%u\n",
512 (tag & 0xff),
513 ((tag >> 8) & 0xff),
514 ((tag >> 16) & 0xff),
515 ((tag >> 24) & 0xff), length);
516 #endif
517 switch(tag) {
518 case MKTAG('I', 'H', 'D', 'R'):
519 if (length != 13)
520 goto fail;
521 s->width = get32(&s->bytestream);
522 s->height = get32(&s->bytestream);
523 s->bit_depth = *s->bytestream++;
524 s->color_type = *s->bytestream++;
525 s->compression_type = *s->bytestream++;
526 s->filter_type = *s->bytestream++;
527 s->interlace_type = *s->bytestream++;
528 crc = get32(&s->bytestream);
529 s->state |= PNG_IHDR;
530 #ifdef DEBUG
531 printf("width=%d height=%d depth=%d color_type=%d compression_type=%d filter_type=%d interlace_type=%d\n",
532 s->width, s->height, s->bit_depth, s->color_type,
533 s->compression_type, s->filter_type, s->interlace_type);
534 #endif
535 break;
536 case MKTAG('I', 'D', 'A', 'T'):
537 if (!(s->state & PNG_IHDR))
538 goto fail;
539 if (!(s->state & PNG_IDAT)) {
540 /* init image info */
541 avctx->width = s->width;
542 avctx->height = s->height;
543
544 s->channels = png_get_nb_channels(s->color_type);
545 s->bits_per_pixel = s->bit_depth * s->channels;
546 s->bpp = (s->bits_per_pixel + 7) >> 3;
547 s->row_size = (avctx->width * s->bits_per_pixel + 7) >> 3;
548
549 if (s->bit_depth == 8 &&
550 s->color_type == PNG_COLOR_TYPE_RGB) {
551 avctx->pix_fmt = PIX_FMT_RGB24;
552 } else if (s->bit_depth == 8 &&
553 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
554 avctx->pix_fmt = PIX_FMT_RGBA32;
555 } else if (s->bit_depth == 8 &&
556 s->color_type == PNG_COLOR_TYPE_GRAY) {
557 avctx->pix_fmt = PIX_FMT_GRAY8;
558 } else if (s->bit_depth == 1 &&
559 s->color_type == PNG_COLOR_TYPE_GRAY) {
560 avctx->pix_fmt = PIX_FMT_MONOBLACK;
561 } else if (s->color_type == PNG_COLOR_TYPE_PALETTE) {
562 avctx->pix_fmt = PIX_FMT_PAL8;
563 } else {
564 goto fail;
565 }
566 if(p->data[0])
567 avctx->release_buffer(avctx, p);
568
569 p->reference= 0;
570 if(avctx->get_buffer(avctx, p) < 0){
571 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
572 goto fail;
573 }
574 p->pict_type= FF_I_TYPE;
575 p->key_frame= 1;
576 p->interlaced_frame = !!s->interlace_type;
577
578 /* compute the compressed row size */
579 if (!s->interlace_type) {
580 s->crow_size = s->row_size + 1;
581 } else {
582 s->pass = 0;
583 s->pass_row_size = png_pass_row_size(s->pass,
584 s->bits_per_pixel,
585 s->width);
586 s->crow_size = s->pass_row_size + 1;
587 }
588 #ifdef DEBUG
589 printf("row_size=%d crow_size =%d\n",
590 s->row_size, s->crow_size);
591 #endif
592 s->image_buf = p->data[0];
593 s->image_linesize = p->linesize[0];
594 /* copy the palette if needed */
595 if (s->color_type == PNG_COLOR_TYPE_PALETTE)
596 memcpy(p->data[1], s->palette, 256 * sizeof(uint32_t));
597 /* empty row is used if differencing to the first row */
598 s->last_row = av_mallocz(s->row_size);
599 if (!s->last_row)
600 goto fail;
601 if (s->interlace_type ||
602 s->color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
603 s->tmp_row = av_malloc(s->row_size);
604 if (!s->tmp_row)
605 goto fail;
606 }
607 /* compressed row */
608 s->crow_buf = av_malloc(s->row_size + 1);
609 if (!s->crow_buf)
610 goto fail;
611 s->zstream.avail_out = s->crow_size;
612 s->zstream.next_out = s->crow_buf;
613 }
614 s->state |= PNG_IDAT;
615 if (png_decode_idat(s, length) < 0)
616 goto fail;
617 /* skip crc */
618 crc = get32(&s->bytestream);
619 break;
620 case MKTAG('P', 'L', 'T', 'E'):
621 {
622 int n, i, r, g, b;
623
624 if ((length % 3) != 0 || length > 256 * 3)
625 goto skip_tag;
626 /* read the palette */
627 n = length / 3;
628 for(i=0;i<n;i++) {
629 r = *s->bytestream++;
630 g = *s->bytestream++;
631 b = *s->bytestream++;
632 s->palette[i] = (0xff << 24) | (r << 16) | (g << 8) | b;
633 }
634 for(;i<256;i++) {
635 s->palette[i] = (0xff << 24);
636 }
637 s->state |= PNG_PLTE;
638 crc = get32(&s->bytestream);
639 }
640 break;
641 case MKTAG('t', 'R', 'N', 'S'):
642 {
643 int v, i;
644
645 /* read the transparency. XXX: Only palette mode supported */
646 if (s->color_type != PNG_COLOR_TYPE_PALETTE ||
647 length > 256 ||
648 !(s->state & PNG_PLTE))
649 goto skip_tag;
650 for(i=0;i<length;i++) {
651 v = *s->bytestream++;
652 s->palette[i] = (s->palette[i] & 0x00ffffff) | (v << 24);
653 }
654 crc = get32(&s->bytestream);
655 }
656 break;
657 case MKTAG('I', 'E', 'N', 'D'):
658 if (!(s->state & PNG_ALLIMAGE))
659 goto fail;
660 crc = get32(&s->bytestream);
661 goto exit_loop;
662 default:
663 /* skip tag */
664 skip_tag:
665 s->bytestream += length + 4;
666 break;
667 }
668 }
669 exit_loop:
670 *picture= *(AVFrame*)&s->picture;
671 *data_size = sizeof(AVPicture);
672
673 ret = s->bytestream - s->bytestream_start;
674 the_end:
675 inflateEnd(&s->zstream);
676 av_freep(&s->crow_buf);
677 av_freep(&s->last_row);
678 av_freep(&s->tmp_row);
679 return ret;
680 fail:
681 ret = -1;
682 goto the_end;
683 }
684
685 static void png_write_chunk(uint8_t **f, uint32_t tag,
686 const uint8_t *buf, int length)
687 {
688 uint32_t crc;
689 uint8_t tagbuf[4];
690
691 put32(f, length);
692 crc = crc32(0, Z_NULL, 0);
693 tagbuf[0] = tag;
694 tagbuf[1] = tag >> 8;
695 tagbuf[2] = tag >> 16;
696 tagbuf[3] = tag >> 24;
697 crc = crc32(crc, tagbuf, 4);
698 put32(f, bswap_32(tag));
699 if (length > 0) {
700 crc = crc32(crc, buf, length);
701 memcpy(*f, buf, length);
702 *f += length;
703 }
704 put32(f, crc);
705 }
706
707 /* XXX: use avcodec generic function ? */
708 static void to_be32(uint8_t *p, uint32_t v)
709 {
710 p[0] = v >> 24;
711 p[1] = v >> 16;
712 p[2] = v >> 8;
713 p[3] = v;
714 }
715
716 /* XXX: do filtering */
717 static int png_write_row(PNGContext *s, const uint8_t *data, int size)
718 {
719 int ret;
720
721 s->zstream.avail_in = size;
722 s->zstream.next_in = (uint8_t *)data;
723 while (s->zstream.avail_in > 0) {
724 ret = deflate(&s->zstream, Z_NO_FLUSH);
725 if (ret != Z_OK)
726 return -1;
727 if (s->zstream.avail_out == 0) {
728 png_write_chunk(&s->bytestream, MKTAG('I', 'D', 'A', 'T'), s->buf, IOBUF_SIZE);
729 s->zstream.avail_out = IOBUF_SIZE;
730 s->zstream.next_out = s->buf;
731 }
732 }
733 return 0;
734 }
735
736 static int common_init(AVCodecContext *avctx){
737 PNGContext *s = avctx->priv_data;
738
739 avcodec_get_frame_defaults((AVFrame*)&s->picture);
740 avctx->coded_frame= (AVFrame*)&s->picture;
741 // s->avctx= avctx;
742
743 return 0;
744 }
745
746 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
747 PNGContext *s = avctx->priv_data;
748 AVFrame *pict = data;
749 AVFrame * const p= (AVFrame*)&s->picture;
750 int bit_depth, color_type, y, len, row_size, ret, is_progressive;
751 int bits_per_pixel, pass_row_size;
752 uint8_t *ptr;
753 uint8_t *crow_buf = NULL;
754 uint8_t *tmp_buf = NULL;
755
756 *p = *pict;
757 p->pict_type= FF_I_TYPE;
758 p->key_frame= 1;
759
760 s->bytestream_start=
761 s->bytestream= buf;
762 s->bytestream_end= buf+buf_size;
763
764 is_progressive = !!(avctx->flags & CODEC_FLAG_INTERLACED_DCT);
765 switch(avctx->pix_fmt) {
766 case PIX_FMT_RGBA32:
767 bit_depth = 8;
768 color_type = PNG_COLOR_TYPE_RGB_ALPHA;
769 break;
770 case PIX_FMT_RGB24:
771 bit_depth = 8;
772 color_type = PNG_COLOR_TYPE_RGB;
773 break;
774 case PIX_FMT_GRAY8:
775 bit_depth = 8;
776 color_type = PNG_COLOR_TYPE_GRAY;
777 break;
778 case PIX_FMT_MONOBLACK:
779 bit_depth = 1;
780 color_type = PNG_COLOR_TYPE_GRAY;
781 break;
782 case PIX_FMT_PAL8:
783 bit_depth = 8;
784 color_type = PNG_COLOR_TYPE_PALETTE;
785 break;
786 default:
787 return -1;
788 }
789 bits_per_pixel = png_get_nb_channels(color_type) * bit_depth;
790 row_size = (avctx->width * bits_per_pixel + 7) >> 3;
791
792 s->zstream.zalloc = png_zalloc;
793 s->zstream.zfree = png_zfree;
794 s->zstream.opaque = NULL;
795 ret = deflateInit2(&s->zstream, Z_DEFAULT_COMPRESSION,
796 Z_DEFLATED, 15, 8, Z_DEFAULT_STRATEGY);
797 if (ret != Z_OK)
798 return -1;
799 crow_buf = av_malloc(row_size + 1);
800 if (!crow_buf)
801 goto fail;
802 if (is_progressive) {
803 tmp_buf = av_malloc(row_size + 1);
804 if (!tmp_buf)
805 goto fail;
806 }
807
808 /* write png header */
809 memcpy(s->bytestream, pngsig, 8);
810 s->bytestream += 8;
811
812 to_be32(s->buf, avctx->width);
813 to_be32(s->buf + 4, avctx->height);
814 s->buf[8] = bit_depth;
815 s->buf[9] = color_type;
816 s->buf[10] = 0; /* compression type */
817 s->buf[11] = 0; /* filter type */
818 s->buf[12] = is_progressive; /* interlace type */
819
820 png_write_chunk(&s->bytestream, MKTAG('I', 'H', 'D', 'R'), s->buf, 13);
821
822 /* put the palette if needed */
823 if (color_type == PNG_COLOR_TYPE_PALETTE) {
824 int has_alpha, alpha, i;
825 unsigned int v;
826 uint32_t *palette;
827 uint8_t *alpha_ptr;
828
829 palette = (uint32_t *)p->data[1];
830 ptr = s->buf;
831 alpha_ptr = s->buf + 256 * 3;
832 has_alpha = 0;
833 for(i = 0; i < 256; i++) {
834 v = palette[i];
835 alpha = v >> 24;
836 if (alpha != 0xff)
837 has_alpha = 1;
838 *alpha_ptr++ = alpha;
839 ptr[0] = v >> 16;
840 ptr[1] = v >> 8;
841 ptr[2] = v;
842 ptr += 3;
843 }
844 png_write_chunk(&s->bytestream, MKTAG('P', 'L', 'T', 'E'), s->buf, 256 * 3);
845 if (has_alpha) {
846 png_write_chunk(&s->bytestream, MKTAG('t', 'R', 'N', 'S'), s->buf + 256 * 3, 256);
847 }
848 }
849
850 /* now put each row */
851 s->zstream.avail_out = IOBUF_SIZE;
852 s->zstream.next_out = s->buf;
853 if (is_progressive) {
854 uint8_t *ptr1;
855 int pass;
856
857 for(pass = 0; pass < NB_PASSES; pass++) {
858 /* NOTE: a pass is completely omited if no pixels would be
859 output */
860 pass_row_size = png_pass_row_size(pass, bits_per_pixel, avctx->width);
861 if (pass_row_size > 0) {
862 for(y = 0; y < avctx->height; y++) {
863 if ((png_pass_ymask[pass] << (y & 7)) & 0x80) {
864 ptr = p->data[0] + y * p->linesize[0];
865 if (color_type == PNG_COLOR_TYPE_RGB_ALPHA) {
866 convert_from_rgba32(tmp_buf, ptr, avctx->width);
867 ptr1 = tmp_buf;
868 } else {
869 ptr1 = ptr;
870 }
871 png_get_interlaced_row(crow_buf + 1, pass_row_size,
872 bits_per_pixel, pass,
873 ptr1, avctx->width);
874 crow_buf[0] = PNG_FILTER_VALUE_NONE;
875 png_write_row(s, crow_buf, pass_row_size + 1);
876 }
877 }
878 }
879 }
880 } else {
881 for(y = 0; y < avctx->height; y++) {
882 ptr = p->data[0] + y * p->linesize[0];
883 if (color_type == PNG_COLOR_TYPE_RGB_ALPHA)
884 convert_from_rgba32(crow_buf + 1, ptr, avctx->width);
885 else
886 memcpy(crow_buf + 1, ptr, row_size);
887 crow_buf[0] = PNG_FILTER_VALUE_NONE;
888 png_write_row(s, crow_buf, row_size + 1);
889 }
890 }
891 /* compress last bytes */
892 for(;;) {
893 ret = deflate(&s->zstream, Z_FINISH);
894 if (ret == Z_OK || ret == Z_STREAM_END) {
895 len = IOBUF_SIZE - s->zstream.avail_out;
896 if (len > 0) {
897 png_write_chunk(&s->bytestream, MKTAG('I', 'D', 'A', 'T'), s->buf, len);
898 }
899 s->zstream.avail_out = IOBUF_SIZE;
900 s->zstream.next_out = s->buf;
901 if (ret == Z_STREAM_END)
902 break;
903 } else {
904 goto fail;
905 }
906 }
907 png_write_chunk(&s->bytestream, MKTAG('I', 'E', 'N', 'D'), NULL, 0);
908
909 ret = s->bytestream - s->bytestream_start;
910 the_end:
911 av_free(crow_buf);
912 av_free(tmp_buf);
913 deflateEnd(&s->zstream);
914 return ret;
915 fail:
916 ret = -1;
917 goto the_end;
918 }
919
920 AVCodec png_decoder = {
921 "png",
922 CODEC_TYPE_VIDEO,
923 CODEC_ID_PNG,
924 sizeof(PNGContext),
925 common_init,
926 NULL,
927 NULL, //decode_end,
928 decode_frame,
929 0 /*CODEC_CAP_DR1*/ /*| CODEC_CAP_DRAW_HORIZ_BAND*/,
930 NULL
931 };
932
933 AVCodec png_encoder = {
934 "png",
935 CODEC_TYPE_VIDEO,
936 CODEC_ID_PNG,
937 sizeof(PNGContext),
938 common_init,
939 encode_frame,
940 NULL, //encode_end,
941 .pix_fmts= (enum PixelFormat[]){PIX_FMT_RGB24, PIX_FMT_RGBA32, PIX_FMT_PAL8, PIX_FMT_GRAY8, PIX_FMT_MONOBLACK, -1},
942 };
943 #endif