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 */
26
29
30 #include <zlib.h>
31
32 #define IOBUF_SIZE 4096
33
37
41
43
46 int dpi;
///< Physical pixel density, in dots per inch, if set
47 int dpm;
///< Physical pixel density, in dots per meter, if set
49
51 int bits_per_pixel,
int pass,
53 {
54 int x,
mask, dst_x, j,
b, bpp;
57 static const int masks[] = {0x80, 0x08, 0x88, 0x22, 0xaa, 0x55, 0xff};
58
60 switch(bits_per_pixel) {
61 case 1:
62 memset(dst, 0, row_size);
63 dst_x = 0;
64 for(x = 0; x <
width; x++) {
65 j = (x & 7);
66 if ((mask << j) & 0x80) {
67 b = (src[x >> 3] >> (7 - j)) & 1;
68 dst[dst_x >> 3] |= b << (7 - (dst_x & 7));
69 dst_x++;
70 }
71 }
72 break;
73 default:
74 bpp = bits_per_pixel >> 3;
75 d = dst;
77 for(x = 0; x <
width; x++) {
78 j = x & 7;
79 if ((mask << j) & 0x80) {
80 memcpy(d, s, bpp);
81 d += bpp;
82 }
83 s += bpp;
84 }
85 break;
86 }
87 }
88
90 {
91 int i;
92 for(i = 0; i < w; i++) {
93 int a,
b,
c, p, pa, pb, pc;
94
95 a = src[i - bpp];
96 b = top[i];
97 c = top[i - bpp];
98
101
102 pa = abs(p);
103 pb = abs(pc);
104 pc = abs(p + pc);
105
106 if (pa <= pb && pa <= pc)
108 else if (pb <= pc)
110 else
112 dst[i] = src[i] - p;
113 }
114 }
115
118 {
119 int i;
120
121 switch(filter_type) {
123 memcpy(dst, src, size);
124 break;
127 memcpy(dst, src, bpp);
128 break;
131 break;
133 for(i = 0; i < bpp; i++)
134 dst[i] = src[i] - (top[i] >> 1);
136 dst[i] = src[i] - ((src[i-bpp] + top[i]) >> 1);
137 break;
139 for(i = 0; i < bpp; i++)
140 dst[i] = src[i] - top[i];
142 break;
143 }
144 }
145
148 {
151 if(!top && pred)
154 int i;
155 int cost, bcost = INT_MAX;
156 uint8_t *buf1 = dst, *buf2 = dst + size + 16;
157 for(pred=0; pred<5; pred++) {
160 cost = 0;
161 for(i=0; i<=
size; i++)
162 cost += abs((int8_t)buf1[i]);
163 if(cost < bcost) {
164 bcost = cost;
166 }
167 }
168 return buf2;
169 } else {
172 return dst;
173 }
174 }
175
178 {
179 uint32_t crc;
181
182 bytestream_put_be32(f, length);
183 crc =
crc32(0, Z_NULL, 0);
185 crc =
crc32(crc, tagbuf, 4);
187 if (length > 0) {
188 crc =
crc32(crc, buf, length);
189 memcpy(*f, buf, length);
191 }
192 bytestream_put_be32(f, crc);
193 }
194
195 /* XXX: do filtering */
197 {
199
202 while (s->
zstream.avail_in > 0) {
203 ret = deflate(&s->
zstream, Z_NO_FLUSH);
204 if (ret != Z_OK)
205 return -1;
206 if (s->
zstream.avail_out == 0) {
211 }
212 }
213 return 0;
214 }
215
217 const AVFrame *pict,
int *got_packet)
218 {
220 const AVFrame *
const p = pict;
222 int bits_per_pixel, pass_row_size, enc_row_size;
223 int64_t max_packet_size;
224 int compression_level;
226 uint8_t *crow_base = NULL, *crow_buf, *crow;
227 uint8_t *progressive_buf = NULL;
229
233 bit_depth = 16;
235 break;
237 bit_depth = 16;
239 break;
241 bit_depth = 8;
243 break;
245 bit_depth = 8;
247 break;
249 bit_depth = 16;
251 break;
253 bit_depth = 8;
255 break;
257 bit_depth = 8;
259 break;
261 bit_depth = 1;
263 break;
265 bit_depth = 8;
267 break;
268 default:
269 return -1;
270 }
272 row_size = (avctx->
width * bits_per_pixel + 7) >> 3;
273
278 Z_DEFAULT_COMPRESSION :
280 ret = deflateInit2(&s->
zstream, compression_level,
281 Z_DEFLATED, 15, 8, Z_DEFAULT_STRATEGY);
282 if (ret != Z_OK)
283 return -1;
284
285 enc_row_size = deflateBound(&s->
zstream, row_size);
286 max_packet_size = avctx->
height * (int64_t)(enc_row_size +
289 if (max_packet_size > INT_MAX)
293
297
299 if (!crow_base)
300 goto fail;
301 crow_buf = crow_base + 15; // pixel data should be aligned, but there's a control byte before it
302 if (is_progressive) {
303 progressive_buf =
av_malloc(row_size + 1);
304 if (!progressive_buf)
305 goto fail;
306 }
307 if (is_progressive) {
309 if (!top_buf)
310 goto fail;
311 }
312
313 /* write png header */
316
319 s->
buf[8] = bit_depth;
320 s->
buf[9] = color_type;
321 s->
buf[10] = 0;
/* compression type */
322 s->
buf[11] = 0;
/* filter type */
323 s->
buf[12] = is_progressive;
/* interlace type */
324
326
330 s->
buf[8] = 1;
/* unit specifier is meter */
331 } else {
334 s->
buf[8] = 0;
/* unit specifier is unknown */
335 }
337
338 /* put the palette if needed */
340 int has_alpha,
alpha, i;
344
345 palette = (uint32_t *)p->
data[1];
347 alpha_ptr = s->
buf + 256 * 3;
348 has_alpha = 0;
349 for(i = 0; i < 256; i++) {
350 v = palette[i];
351 alpha = v >> 24;
352 if (alpha != 0xff)
353 has_alpha = 1;
354 *alpha_ptr++ =
alpha;
355 bytestream_put_be24(&ptr, v);
356 }
358 if (has_alpha) {
360 }
361 }
362
363 /* now put each row */
366 if (is_progressive) {
368
369 for(pass = 0; pass <
NB_PASSES; pass++) {
370 /* NOTE: a pass is completely omitted if no pixels would be
371 output */
373 if (pass_row_size > 0) {
374 top = NULL;
375 for(y = 0; y < avctx->
height; y++) {
380 bits_per_pixel, pass,
382 crow =
png_choose_filter(s, crow_buf, progressive_buf, top, pass_row_size, bits_per_pixel>>3);
384 top = progressive_buf;
385 }
386 }
387 }
388 }
389 } else {
390 top = NULL;
391 for(y = 0; y < avctx->
height; y++) {
395 top = ptr;
396 }
397 }
398 /* compress last bytes */
399 for(;;) {
400 ret = deflate(&s->
zstream, Z_FINISH);
401 if (ret == Z_OK || ret == Z_STREAM_END) {
405 }
408 if (ret == Z_STREAM_END)
409 break;
410 } else {
411 goto fail;
412 }
413 }
415
418 *got_packet = 1;
419 ret = 0;
420
421 the_end:
427 fail:
428 ret = -1;
429 goto the_end;
430 }
431
434
438 break;
441 break;
444 break;
447 break;
450 }
451
455
458
460
464
469 s->
dpm = s->
dpi * 10000 / 254;
470 }
471
472 return 0;
473 }
474
476 {
478 return 0;
479 }
480
481 #define OFFSET(x) offsetof(PNGEncContext, x)
482 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
486 { NULL }
487 };
488
494 };
495
513 },
515 };