24#include "config_components.h"
136 0x01, 0x01, 0x11, 0x11, 0x55, 0x55, 0xff,
141 0xff, 0xff, 0x0f, 0xff, 0x33, 0xff, 0x55,
146 0xff, 0x0f, 0xff, 0x33, 0xff, 0x55, 0xff
153 int bits_per_pixel,
int pass,
154 int color_type,
const uint8_t *
src)
156 int x,
mask, dsp_mask, j, src_x,
b, bpp;
163 switch (bits_per_pixel) {
166 for (x = 0; x <
width; x++) {
168 if ((dsp_mask << j) & 0x80) {
169 b = (
src[src_x >> 3] >> (7 - (src_x & 7))) & 1;
170 dst[x >> 3] &= 0xFF7F>>j;
171 dst[x >> 3] |=
b << (7 - j);
173 if ((
mask << j) & 0x80)
179 for (x = 0; x <
width; x++) {
180 int j2 = 2 * (x & 3);
182 if ((dsp_mask << j) & 0x80) {
183 b = (
src[src_x >> 2] >> (6 - 2*(src_x & 3))) & 3;
184 dst[x >> 2] &= 0xFF3F>>j2;
185 dst[x >> 2] |=
b << (6 - j2);
187 if ((
mask << j) & 0x80)
193 for (x = 0; x <
width; x++) {
196 if ((dsp_mask << j) & 0x80) {
197 b = (
src[src_x >> 1] >> (4 - 4*(src_x & 1))) & 15;
198 dst[x >> 1] &= 0xFF0F>>j2;
199 dst[x >> 1] |=
b << (4 - j2);
201 if ((
mask << j) & 0x80)
206 bpp = bits_per_pixel >> 3;
209 for (x = 0; x <
width; x++) {
211 if ((dsp_mask << j) & 0x80) {
215 if ((
mask << j) & 0x80)
222#define UNROLL1(bpp, op) \
231 for (; i <= size - bpp; i += bpp) { \
232 dst[i + 0] = r = op(r, src[i + 0], last[i + 0]); \
235 dst[i + 1] = g = op(g, src[i + 1], last[i + 1]); \
238 dst[i + 2] = b = op(b, src[i + 2], last[i + 2]); \
241 dst[i + 3] = a = op(a, src[i + 3], last[i + 3]); \
245#define UNROLL_FILTER(op) \
248 } else if (bpp == 2) { \
250 } else if (bpp == 3) { \
252 } else if (bpp == 4) { \
255 for (; i < size; i++) { \
256 dst[i] = op(dst[i - bpp], src[i], last[i]); \
261 const uint8_t *
src,
const uint8_t *last,
int size,
int bpp)
263 int i, p,
r,
g,
b,
a;
265 switch (filter_type) {
270 for (
i = 0;
i < bpp;
i++)
274 for (;
i <
size;
i += bpp) {
275 unsigned s = *(
const int *)(
src +
i);
276 p = ((
s & 0x7f7f7f7f) + (p & 0x7f7f7f7f)) ^ ((
s ^ p) & 0x80808080);
277 *(
int *)(
dst +
i) = p;
280#define OP_SUB(x, s, l) ((x) + (s))
288 for (
i = 0;
i < bpp;
i++) {
292#define OP_AVG(x, s, l) (((((x) + (l)) >> 1) + (s)) & 0xff)
296 for (
i = 0;
i < bpp;
i++) {
300 if (bpp > 2 &&
size > 4) {
317#define YUV2RGB(NAME, TYPE) \
318static void deloco_ ## NAME(TYPE *dst, int size, int alpha) \
321 for (i = 0; i < size - 2; i += 3 + alpha) { \
322 int g = dst [i + 1]; \
333 if (
s->interlace_type) {
334 return 100 - 100 * s->pass / (NB_PASSES - 1);
336 return 100 - 100 * s->y / s->cur_h;
343 uint8_t *ptr, *last_row;
346 if (!
s->interlace_type) {
347 ptr =
dst + dst_stride * (
s->y +
s->y_offset) +
s->x_offset *
s->bpp;
349 last_row =
s->last_row;
351 last_row = ptr - dst_stride;
354 last_row,
s->row_size,
s->bpp);
357 if (
s->bit_depth == 16) {
358 deloco_rgb16((uint16_t *)(ptr - dst_stride),
s->row_size / 2,
361 deloco_rgb8(ptr - dst_stride,
s->row_size,
366 if (
s->y ==
s->cur_h) {
369 if (
s->bit_depth == 16) {
370 deloco_rgb16((uint16_t *)ptr,
s->row_size / 2,
373 deloco_rgb8(ptr,
s->row_size,
381 ptr =
dst + dst_stride * (
s->y +
s->y_offset) +
s->x_offset *
s->bpp;
388 s->last_row,
s->pass_row_size,
s->bpp);
389 FFSWAP(uint8_t *,
s->last_row,
s->tmp_row);
390 FFSWAP(
unsigned int,
s->last_row_size,
s->tmp_row_size);
395 s->color_type,
s->last_row);
398 if (
s->y ==
s->cur_h) {
399 memset(
s->last_row, 0,
s->row_size);
410 s->crow_size =
s->pass_row_size + 1;
411 if (
s->pass_row_size != 0)
423 uint8_t *
dst, ptrdiff_t dst_stride)
425 z_stream *
const zstream = &
s->zstream.zstream;
428 zstream->next_in = gb->
buffer;
431 while (zstream->avail_in > 0) {
432 ret =
inflate(zstream, Z_PARTIAL_FLUSH);
433 if (ret != Z_OK && ret != Z_STREAM_END) {
437 if (zstream->avail_out == 0) {
441 zstream->avail_out =
s->crow_size;
442 zstream->next_out =
s->crow_buf;
444 if (ret == Z_STREAM_END && zstream->avail_in > 0) {
446 "%d undecompressed bytes left in buffer\n", zstream->avail_in);
454#define PNG_ZBUF_MAX_DECOMPRESSED (16 * 1024 * 1024)
457 const uint8_t *data_end,
void *logctx)
460 z_stream *
const zstream = &z.
zstream;
467 zstream->next_in =
data;
468 zstream->avail_in = data_end -
data;
471 while (zstream->avail_in > 0) {
474 "Compressed PNG chunk expands beyond %d bytes, aborting\n",
484 zstream->next_out = buf;
485 zstream->avail_out = buf_size - 1;
486 ret =
inflate(zstream, Z_PARTIAL_FLUSH);
487 if (ret != Z_OK && ret != Z_STREAM_END) {
491 bp->len += zstream->next_out - buf;
492 if (ret == Z_STREAM_END)
496 bp->str[bp->len] = 0;
510 for (
i = 0;
i < size_in;
i++)
511 extra += !!(in[
i] & 0x80);
512 if (size_in == SIZE_MAX || extra > SIZE_MAX - size_in - 1)
517 for (
i = 0;
i < size_in;
i++) {
519 *(q++) = 0xC0 | (in[
i] >> 6);
520 *(q++) = 0x80 | (in[
i] & 0x3F);
531 size_t len = strlen(txt_utf8);
532 const char *ptr = txt_utf8;
533 const char *end = txt_utf8 +
len;
536 const uint8_t *exif_end;
539 while (*ptr++ !=
'\n') {
545 if (end - ptr < 4 || strncmp(
"exif", ptr, 4))
557 size_t nlen = exif_len * 10 + (*ptr -
'0');
572 if (exif_len > SIZE_MAX / 2 || end - ptr < 2 * exif_len)
587 ptr += strlen(
"Exif ") * 2 - 1;
589 exif_ptr =
s->exif_data->data;
590 exif_end = exif_ptr +
s->exif_data->size;
592 while (exif_ptr < exif_end) {
593 while (++ptr < end) {
594 if (*ptr >=
'0' && *ptr <=
'9') {
595 *exif_ptr = (*ptr -
'0') << 4;
598 if (*ptr >=
'a' && *ptr <=
'f') {
599 *exif_ptr = (*ptr -
'a' + 10) << 4;
603 while (++ptr < end) {
604 if (*ptr >=
'0' && *ptr <=
'9') {
605 *exif_ptr += *ptr -
'0';
608 if (*ptr >=
'a' && *ptr <=
'f') {
609 *exif_ptr += *ptr -
'a' + 10;
626 const char *keyword =
data;
627 const char *keyword_end = memchr(keyword, 0, data_end -
data);
628 char *kw_utf8 =
NULL, *txt_utf8 =
NULL;
635 data = keyword_end + 1;
638 if (
data == data_end)
649 text_len = data_end -
data;
663 if (!strcmp(kw_utf8,
"Raw profile type exif")) {
695 s->width =
s->cur_w = bytestream2_get_be32(gb);
696 s->height =
s->cur_h = bytestream2_get_be32(gb);
698 s->cur_w =
s->cur_h =
s->width =
s->height = 0;
702 s->bit_depth = bytestream2_get_byte(gb);
703 if (
s->bit_depth != 1 &&
s->bit_depth != 2 &&
s->bit_depth != 4 &&
704 s->bit_depth != 8 &&
s->bit_depth != 16) {
708 s->color_type = bytestream2_get_byte(gb);
709 s->compression_type = bytestream2_get_byte(gb);
710 if (
s->compression_type) {
714 s->filter_type = bytestream2_get_byte(gb);
715 s->interlace_type = bytestream2_get_byte(gb);
719 "compression_type=%d filter_type=%d interlace_type=%d\n",
720 s->width,
s->height,
s->bit_depth,
s->color_type,
721 s->compression_type,
s->filter_type,
s->interlace_type);
725 s->cur_w =
s->cur_h =
s->width =
s->height = 0;
782 if (
s->cicp_range == 0) {
785 }
else if (
s->cicp_range != 1) {
789 }
else if (
s->iccp_data) {
792 s->iccp_data_len, &sd);
796 memcpy(sd->
data,
s->iccp_data,
s->iccp_data_len);
799 }
else if (
s->have_srgb) {
802 }
else if (
s->have_chrm) {
821 if (
s->iccp_data ||
s->have_srgb ||
s->have_cicp) {
823 }
else if (
s->gamma) {
833 if (
s->gamma > 45355 &&
s->gamma < 45555)
835 else if (
s->gamma > 35614 &&
s->gamma < 35814)
837 else if (
s->gamma > 38362 &&
s->gamma < 38562)
839 else if (
s->gamma > 99900 &&
s->gamma < 100100)
845 if (!
s->have_cicp ||
s->cicp_range == 1)
853 if (!
s->has_trns &&
s->significant_bits > 0)
868 clli->
MaxCLL =
s->clli_max / 10000;
869 clli->
MaxFALL =
s->clli_avg / 10000;
882 for (
int i = 0;
i < 3;
i++) {
901 size_t byte_depth =
s->bit_depth > 8 ? 2 : 1;
916 s->bits_per_pixel =
s->bit_depth *
s->channels;
917 s->bpp = (
s->bits_per_pixel + 7) >> 3;
918 s->row_size = (
s->cur_w *
s->bits_per_pixel + 7) >> 3;
920 if ((
s->bit_depth == 2 ||
s->bit_depth == 4 ||
s->bit_depth == 8) &&
923 }
else if ((
s->bit_depth == 2 ||
s->bit_depth == 4 ||
s->bit_depth == 8) &&
926 }
else if ((
s->bit_depth == 2 ||
s->bit_depth == 4 ||
s->bit_depth == 8) &&
929 }
else if (
s->bit_depth == 16 &&
932 }
else if (
s->bit_depth == 16 &&
935 }
else if (
s->bit_depth == 16 &&
938 }
else if ((
s->bits_per_pixel == 1 ||
s->bits_per_pixel == 2 ||
s->bits_per_pixel == 4 ||
s->bits_per_pixel == 8) &&
943 }
else if (
s->bit_depth == 8 &&
946 }
else if (
s->bit_depth == 16 &&
951 "Bit depth %d color type %d",
952 s->bit_depth,
s->color_type);
976 "and color type %d with TRNS",
977 s->bit_depth,
s->color_type);
981 s->bpp += byte_depth;
1025 if (!
s->interlace_type) {
1026 s->crow_size =
s->row_size + 1;
1032 s->crow_size =
s->pass_row_size + 1;
1034 ff_dlog(avctx,
"row_size=%d crow_size =%d\n",
1035 s->row_size,
s->crow_size);
1039 memcpy(p->data[1],
s->palette, 256 *
sizeof(uint32_t));
1044 if (
s->interlace_type ||
1056 s->crow_buf =
s->buffer + 15;
1057 s->zstream.zstream.avail_out =
s->crow_size;
1058 s->zstream.zstream.next_out =
s->crow_buf;
1065 s->bpp -= byte_depth;
1070 s->bpp += byte_depth;
1084 if ((length % 3) != 0 || length > 256 * 3)
1088 for (
i = 0;
i < n;
i++) {
1089 r = bytestream2_get_byte(gb);
1090 g = bytestream2_get_byte(gb);
1091 b = bytestream2_get_byte(gb);
1092 s->palette[
i] = (0xFFU << 24) | (
r << 16) | (
g << 8) |
b;
1094 for (;
i < 256;
i++)
1095 s->palette[
i] = (0xFFU << 24);
1118 if (length > 256 || !(
s->hdr_state &
PNG_PLTE))
1121 for (
i = 0;
i < length;
i++) {
1122 unsigned v = bytestream2_get_byte(gb);
1123 s->palette[
i] = (
s->palette[
i] & 0x00ffffff) | (v << 24);
1131 for (
i = 0;
i < length / 2;
i++) {
1135 if (
s->bit_depth > 8)
1136 AV_WB16(&
s->transparent_color_be[2 *
i], v);
1138 s->transparent_color_be[
i] = v;
1154 while ((
s->iccp_name[cnt++] = bytestream2_get_byte(gb)) && cnt < 81);
1161 if (bytestream2_get_byte(gb) != 0) {
1174 s->iccp_data_len = bp.len;
1178 s->iccp_name[0] = 0;
1209 int b = bytestream2_get_byteu(gb);
1217 s->significant_bits =
bits;
1226 uint8_t *pd = p->data[0];
1227 for (j = 0; j <
s->height; j++) {
1229 for (k = 7; k >= 1; k--)
1230 if ((
s->width&7) >= k)
1231 pd[8*
i + k - 1] = (pd[
i]>>8-k) & 1;
1232 for (
i--;
i >= 0;
i--) {
1233 pd[8*
i + 7]= pd[
i] & 1;
1234 pd[8*
i + 6]= (pd[
i]>>1) & 1;
1235 pd[8*
i + 5]= (pd[
i]>>2) & 1;
1236 pd[8*
i + 4]= (pd[
i]>>3) & 1;
1237 pd[8*
i + 3]= (pd[
i]>>4) & 1;
1238 pd[8*
i + 2]= (pd[
i]>>5) & 1;
1239 pd[8*
i + 1]= (pd[
i]>>6) & 1;
1240 pd[8*
i + 0]= pd[
i]>>7;
1242 pd += p->linesize[0];
1244 }
else if (
s->bits_per_pixel == 2) {
1246 uint8_t *pd = p->data[0];
1247 for (j = 0; j <
s->height; j++) {
1250 if ((
s->width&3) >= 3) pd[4*
i + 2]= (pd[
i] >> 2) & 3;
1251 if ((
s->width&3) >= 2) pd[4*
i + 1]= (pd[
i] >> 4) & 3;
1252 if ((
s->width&3) >= 1) pd[4*
i + 0]= pd[
i] >> 6;
1253 for (
i--;
i >= 0;
i--) {
1254 pd[4*
i + 3]= pd[
i] & 3;
1255 pd[4*
i + 2]= (pd[
i]>>2) & 3;
1256 pd[4*
i + 1]= (pd[
i]>>4) & 3;
1257 pd[4*
i + 0]= pd[
i]>>6;
1260 if ((
s->width&3) >= 3) pd[4*
i + 2]= ((pd[
i]>>2) & 3)*0x55;
1261 if ((
s->width&3) >= 2) pd[4*
i + 1]= ((pd[
i]>>4) & 3)*0x55;
1262 if ((
s->width&3) >= 1) pd[4*
i + 0]= ( pd[
i]>>6 )*0x55;
1263 for (
i--;
i >= 0;
i--) {
1264 pd[4*
i + 3]= ( pd[
i] & 3)*0x55;
1265 pd[4*
i + 2]= ((pd[
i]>>2) & 3)*0x55;
1266 pd[4*
i + 1]= ((pd[
i]>>4) & 3)*0x55;
1267 pd[4*
i + 0]= ( pd[
i]>>6 )*0x55;
1270 pd += p->linesize[0];
1272 }
else if (
s->bits_per_pixel == 4) {
1274 uint8_t *pd = p->data[0];
1275 for (j = 0; j <
s->height; j++) {
1278 if (
s->width&1) pd[2*
i+0]= pd[
i]>>4;
1279 for (
i--;
i >= 0;
i--) {
1280 pd[2*
i + 1] = pd[
i] & 15;
1281 pd[2*
i + 0] = pd[
i] >> 4;
1284 if (
s->width & 1) pd[2*
i + 0]= (pd[
i] >> 4) * 0x11;
1285 for (
i--;
i >= 0;
i--) {
1286 pd[2*
i + 1] = (pd[
i] & 15) * 0x11;
1287 pd[2*
i + 0] = (pd[
i] >> 4) * 0x11;
1290 pd += p->linesize[0];
1298 uint32_t sequence_number;
1299 int cur_w, cur_h, x_offset, y_offset, dispose_op, blend_op;
1314 sequence_number = bytestream2_get_be32(gb);
1315 cur_w = bytestream2_get_be32(gb);
1316 cur_h = bytestream2_get_be32(gb);
1317 x_offset = bytestream2_get_be32(gb);
1318 y_offset = bytestream2_get_be32(gb);
1320 dispose_op = bytestream2_get_byte(gb);
1321 blend_op = bytestream2_get_byte(gb);
1323 if (sequence_number == 0 &&
1324 (cur_w !=
s->width ||
1325 cur_h !=
s->height ||
1328 cur_w <= 0 || cur_h <= 0 ||
1329 x_offset < 0 || y_offset < 0 ||
1330 cur_w >
s->width - x_offset|| cur_h >
s->height - y_offset)
1338 if ((sequence_number == 0 || !
s->last_picture.f) &&
1358 s->x_offset = x_offset;
1359 s->y_offset = y_offset;
1360 s->dispose_op = dispose_op;
1361 s->blend_op = blend_op;
1369 uint8_t *pd = p->data[0];
1370 uint8_t *pd_last =
s->last_picture.f->data[0];
1373 ls =
FFMIN(ls,
s->width *
s->bpp);
1376 for (j = 0; j <
s->height; j++) {
1377 for (
i = 0;
i < ls;
i++)
1378 pd[
i] += pd_last[
i];
1379 pd += p->linesize[0];
1380 pd_last +=
s->last_picture.f->linesize[0];
1386#define FAST_DIV255(x) ((((x) + 128) * 257) >> 16)
1391 uint8_t *
dst = p->data[0];
1392 ptrdiff_t dst_stride = p->linesize[0];
1393 const uint8_t *
src =
s->last_picture.f->data[0];
1394 ptrdiff_t src_stride =
s->last_picture.f->linesize[0];
1410 for (y = 0; y <
s->y_offset; y++)
1411 memcpy(
dst + y * dst_stride,
src + y * src_stride, p->width * bpp);
1412 for (y =
s->y_offset; y < s->y_offset +
s->cur_h; y++) {
1413 memcpy(
dst + y * dst_stride,
src + y * src_stride,
s->x_offset * bpp);
1414 memcpy(
dst + y * dst_stride + (
s->x_offset +
s->cur_w) * bpp,
1415 src + y * src_stride + (
s->x_offset +
s->cur_w) * bpp,
1416 (p->width -
s->cur_w -
s->x_offset) * bpp);
1418 for (y =
s->y_offset +
s->cur_h; y < p->
height; y++)
1419 memcpy(
dst + y * dst_stride,
src + y * src_stride, p->width * bpp);
1423 for (y =
s->y_offset; y < s->y_offset +
s->cur_h; ++y) {
1424 uint8_t *foreground =
dst + dst_stride * y + bpp *
s->x_offset;
1425 const uint8_t *background =
src + src_stride * y + bpp *
s->x_offset;
1426 for (x =
s->x_offset; x < s->x_offset +
s->cur_w; ++x, foreground += bpp, background += bpp) {
1428 uint8_t foreground_alpha, background_alpha, output_alpha;
1437 foreground_alpha = foreground[3];
1438 background_alpha = background[3];
1442 foreground_alpha = foreground[1];
1443 background_alpha = background[1];
1447 if (foreground_alpha == 255)
1450 if (foreground_alpha == 0) {
1451 memcpy(foreground, background, bpp);
1455 output_alpha = foreground_alpha +
FAST_DIV255((255 - foreground_alpha) * background_alpha);
1459 for (
b = 0;
b < bpp - 1; ++
b) {
1460 if (output_alpha == 0) {
1462 }
else if (background_alpha == 255) {
1463 output[
b] =
FAST_DIV255(foreground_alpha * foreground[
b] + (255 - foreground_alpha) * background[
b]);
1465 output[
b] = (255 * foreground_alpha * foreground[
b] + (255 - foreground_alpha) * background_alpha * background[
b]) / (255 * output_alpha);
1468 output[
b] = output_alpha;
1469 memcpy(foreground, output, bpp);
1482 const ptrdiff_t dst_stride =
s->picture.f->linesize[0];
1483 uint8_t *
dst =
s->picture.f->data[0] +
s->y_offset * dst_stride + bpp *
s->x_offset;
1487 for (
size_t y = 0; y <
s->cur_h; y++) {
1488 memset(
dst, 0, bpp *
s->cur_w);
1497 uint32_t
tag, length;
1498 int decode_next_dat = 0;
1526 length = bytestream2_get_be32(&
s->gb);
1533 uint32_t crc_sig =
AV_RB32(
s->gb.buffer + length + 4);
1534 uint32_t crc_cal =
~av_crc(crc_tab, UINT32_MAX,
s->gb.buffer, length + 4);
1535 if (crc_sig ^ crc_cal) {
1547 tag = bytestream2_get_le32(&
s->gb);
1558 case MKTAG(
'I',
'H',
'D',
'R'):
1559 case MKTAG(
'p',
'H',
'Y',
's'):
1560 case MKTAG(
't',
'E',
'X',
't'):
1561 case MKTAG(
'I',
'D',
'A',
'T'):
1562 case MKTAG(
't',
'R',
'N',
'S'):
1563 case MKTAG(
's',
'R',
'G',
'B'):
1564 case MKTAG(
'c',
'I',
'C',
'P'):
1565 case MKTAG(
'c',
'H',
'R',
'M'):
1566 case MKTAG(
'g',
'A',
'M',
'A'):
1574 case MKTAG(
'I',
'H',
'D',
'R'):
1578 case MKTAG(
'p',
'H',
'Y',
's'):
1582 case MKTAG(
'f',
'c',
'T',
'L'):
1587 decode_next_dat = 1;
1589 case MKTAG(
'f',
'd',
'A',
'T'):
1596 bytestream2_get_be32(&gb_chunk);
1598 case MKTAG(
'I',
'D',
'A',
'T'):
1604 case MKTAG(
'P',
'L',
'T',
'E'):
1607 case MKTAG(
't',
'R',
'N',
'S'):
1610 case MKTAG(
't',
'E',
'X',
't'):
1614 case MKTAG(
'z',
'T',
'X',
't'):
1618 case MKTAG(
's',
'T',
'E',
'R'): {
1619 int mode = bytestream2_get_byte(&gb_chunk);
1622 s->stereo_mode =
mode;
1625 "Unknown value in sTER chunk (%d)\n",
mode);
1629 case MKTAG(
'c',
'I',
'C',
'P'):
1630 s->cicp_primaries = bytestream2_get_byte(&gb_chunk);
1631 s->cicp_trc = bytestream2_get_byte(&gb_chunk);
1632 if (bytestream2_get_byte(&gb_chunk) != 0)
1634 s->cicp_range = bytestream2_get_byte(&gb_chunk);
1635 if (
s->cicp_range != 0 &&
s->cicp_range != 1)
1639 case MKTAG(
's',
'R',
'G',
'B'):
1644 case MKTAG(
'i',
'C',
'C',
'P'): {
1649 case MKTAG(
'c',
'H',
'R',
'M'): {
1652 s->white_point[0] = bytestream2_get_be32(&gb_chunk);
1653 s->white_point[1] = bytestream2_get_be32(&gb_chunk);
1656 for (
i = 0;
i < 3;
i++) {
1657 s->display_primaries[
i][0] = bytestream2_get_be32(&gb_chunk);
1658 s->display_primaries[
i][1] = bytestream2_get_be32(&gb_chunk);
1663 case MKTAG(
's',
'B',
'I',
'T'):
1667 case MKTAG(
'g',
'A',
'M',
'A'): {
1670 s->gamma = bytestream2_get_be32(&gb_chunk);
1682 case MKTAG(
'c',
'L',
'L',
'i'):
1683 case MKTAG(
'c',
'L',
'L',
'I'):
1689 s->clli_max = bytestream2_get_be32u(&gb_chunk);
1690 s->clli_avg = bytestream2_get_be32u(&gb_chunk);
1692 case MKTAG(
'm',
'D',
'C',
'v'):
1693 case MKTAG(
'm',
'D',
'C',
'V'):
1699 for (
int i = 0;
i < 3;
i++) {
1700 s->mdcv_primaries[
i][0] = bytestream2_get_be16u(&gb_chunk);
1701 s->mdcv_primaries[
i][1] = bytestream2_get_be16u(&gb_chunk);
1703 s->mdcv_white_point[0] = bytestream2_get_be16u(&gb_chunk);
1704 s->mdcv_white_point[1] = bytestream2_get_be16u(&gb_chunk);
1705 s->mdcv_max_lum = bytestream2_get_be32u(&gb_chunk);
1706 s->mdcv_min_lum = bytestream2_get_be32u(&gb_chunk);
1708 case MKTAG(
'e',
'X',
'I',
'f'):
1713 case MKTAG(
'I',
'E',
'N',
'D'):
1738 if (
s->bits_per_pixel <= 4)
1753 for (
int y = 0; y <
s->height; y++) {
1754 uint8_t *row = &p->data[0][p->linesize[0] * y];
1756 for (
int x =
s->width - 1; x >= 0; x--) {
1757 const uint8_t idx = row[x];
1759 row[4*x+2] =
s->palette[idx] & 0xFF;
1760 row[4*x+1] = (
s->palette[idx] >> 8 ) & 0xFF;
1761 row[4*x+0] = (
s->palette[idx] >> 16) & 0xFF;
1762 row[4*x+3] =
s->palette[idx] >> 24;
1769 size_t byte_depth =
s->bit_depth > 8 ? 2 : 1;
1770 size_t raw_bpp =
s->bpp - byte_depth;
1775 for (y = 0; y <
s->height; ++y) {
1776 uint8_t *row = &p->data[0][p->linesize[0] * y];
1778 if (
s->bpp == 2 && byte_depth == 1) {
1779 uint8_t *
pixel = &row[2 *
s->width - 1];
1780 uint8_t *rowp = &row[1 *
s->width - 1];
1781 int tcolor =
s->transparent_color_be[0];
1782 for (x =
s->width; x > 0; --x) {
1783 *
pixel-- = *rowp == tcolor ? 0 : 0xff;
1786 }
else if (
s->bpp == 4 && byte_depth == 1) {
1787 uint8_t *
pixel = &row[4 *
s->width - 1];
1788 uint8_t *rowp = &row[3 *
s->width - 1];
1789 int tcolor =
AV_RL24(
s->transparent_color_be);
1790 for (x =
s->width; x > 0; --x) {
1798 for (x =
s->width; x > 0; --x) {
1799 uint8_t *
pixel = &row[
s->bpp * (x - 1)];
1800 memmove(
pixel, &row[raw_bpp * (x - 1)], raw_bpp);
1802 if (!memcmp(
pixel,
s->transparent_color_be, raw_bpp)) {
1803 memset(&
pixel[raw_bpp], 0, byte_depth);
1805 memset(&
pixel[raw_bpp], 0xff, byte_depth);
1813 if (
s->last_picture.f) {
1815 &&
s->last_picture.f->width == p->width
1816 &&
s->last_picture.f->height== p->height
1817 &&
s->last_picture.f->format== p->format
1821 else if (CONFIG_APNG_DECODER &&
1841 s->iccp_data_len = 0;
1842 s->iccp_name[0] = 0;
1844 s->stereo_mode = -1;
1857 if (
s->stereo_mode >= 0) {
1876#if CONFIG_PNG_DECODER
1881 const uint8_t *buf = avpkt->
data;
1882 int buf_size = avpkt->
size;
1891 sig = bytestream2_get_be64(&
s->gb);
1898 s->y =
s->has_trns = 0;
1903 ret = inflateReset(&
s->zstream.zstream);
1934#if CONFIG_APNG_DECODER
1947 if ((ret = inflateReset(&
s->zstream.zstream)) != Z_OK)
1955 if ((ret = inflateReset(&
s->zstream.zstream)) != Z_OK)
2039 s->last_row_size = 0;
2041 s->tmp_row_size = 0;
2051#if CONFIG_APNG_DECODER
2069#if CONFIG_PNG_DECODER
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
const FFCodec ff_png_decoder
const FFCodec ff_apng_decoder
#define APNG_FCTL_CHUNK_SIZE
@ APNG_DISPOSE_OP_BACKGROUND
@ APNG_DISPOSE_OP_PREVIOUS
static av_cold void close(AVCodecParserContext *s)
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Libavcodec external API header.
#define FF_DEBUG_STARTCODE
#define FF_THREAD_FRAME
Decode more than one frame at once.
#define FF_DEBUG_PICT_INFO
void av_bprintf(AVBPrint *buf, const char *fmt,...)
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
#define AV_BPRINT_SIZE_UNLIMITED
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
static av_always_inline int bytestream2_tell(const GetByteContext *g)
#define i(width, name, range_min, range_max)
#define UPDATE_THREAD_CONTEXT(func)
#define FF_CODEC_CAP_USES_PROGRESSFRAMES
The decoder might make use of the ProgressFrame API.
#define FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM
The decoder extracts and fills its parameters even if the frame is skipped due to the skip_frame sett...
#define FF_CODEC_CAP_ICC_PROFILES
Codec supports embedded ICC profiles (AV_FRAME_DATA_ICC_PROFILE).
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Public header for CRC hash function implementation.
Colorspace value utility functions for libavutil.
void ff_progress_frame_replace(ProgressFrame *dst, const ProgressFrame *src)
Do nothing if dst and src already refer to the same AVFrame; otherwise unreference dst and if src is ...
void ff_progress_frame_await(const ProgressFrame *f, int n)
Wait for earlier decoding threads to finish reference frames.
void ff_progress_frame_report(ProgressFrame *f, int n)
Notify later decoding threads when part of their reference frame is ready.
int ff_decode_content_light_new(const AVCodecContext *avctx, AVFrame *frame, AVContentLightMetadata **clm)
Wrapper around av_content_light_metadata_create_side_data(), which rejects side data overridden by th...
int ff_decode_mastering_display_new(const AVCodecContext *avctx, AVFrame *frame, AVMasteringDisplayMetadata **mdm)
Wrapper around av_mastering_display_metadata_create_side_data(), which rejects side data overridden b...
int ff_decode_exif_attach_buffer(AVCodecContext *avctx, AVFrame *frame, AVBufferRef **pbuf, enum AVExifHeaderMode header_mode)
Attach the data buffer to the frame.
int ff_progress_frame_get_buffer(AVCodecContext *avctx, ProgressFrame *f, int flags)
Wrapper around ff_progress_frame_alloc() and ff_thread_get_buffer().
int ff_frame_new_side_data(const AVCodecContext *avctx, AVFrame *frame, enum AVFrameSideDataType type, size_t size, AVFrameSideData **psd)
Wrapper around av_frame_new_side_data, which rejects side data overridden by the demuxer.
void ff_progress_frame_unref(ProgressFrame *f)
Give up a reference to the underlying frame contained in a ProgressFrame and reset the ProgressFrame,...
int ff_set_dimensions(AVCodecContext *s, int width, int height)
#define AV_EF_CRCCHECK
Verify checksums embedded in the bitstream (could be of either encoded or decoded data,...
#define AV_EF_IGNORE_ERR
ignore errors and continue
#define AV_EF_EXPLODE
abort decoding on minor error detection
#define FF_COMPLIANCE_NORMAL
int(* init)(AVBSFContext *ctx)
@ AV_EXIF_TIFF_HEADER
The TIFF header starts with 0x49492a00, or 0x4d4d002a.
EXIF metadata parser - internal functions.
static const uint8_t bits[8]
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
@ AVDISCARD_ALL
discard all
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
void av_fast_padded_mallocz(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_padded_malloc except that buffer will always be 0-initialized after call.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
void av_bprint_get_buffer(AVBPrint *buf, unsigned size, unsigned char **mem, unsigned *actual_size)
Allocate bytes in the buffer for external use.
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
AVBufferRef * av_buffer_alloc(size_t size)
Allocate an AVBuffer of the given size using av_malloc().
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
#define AV_DICT_DONT_STRDUP_KEY
Take ownership of a key that's been allocated with av_malloc() or another memory allocation function.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_BUFFER_TOO_SMALL
Buffer too small.
#define AVERROR_EXTERNAL
Generic error in an external library.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AV_FRAME_FLAG_INTERLACED
A flag to mark frames whose content is interlaced.
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
int av_frame_copy(AVFrame *dst, const AVFrame *src)
Copy the frame data from src to dst.
@ AV_FRAME_DATA_ICC_PROFILE
The data contains an ICC profile as an opaque octet buffer following the format described by ISO 1507...
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
enum AVColorPrimaries av_csp_primaries_id_from_desc(const AVColorPrimariesDesc *prm)
Detects which enum AVColorPrimaries constant corresponds to the given complete gamut description.
static AVRational av_make_q(int num, int den)
Create an AVRational.
#define av_fourcc2str(fourcc)
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
int av_image_get_linesize(enum AVPixelFormat pix_fmt, int width, int plane)
Compute the size of an image line with format pix_fmt and width width for the plane plane.
@ AV_PICTURE_TYPE_I
Intra.
static av_const int av_isdigit(int c)
Locale-independent conversion of ASCII isdigit.
static av_const int av_isgraph(int c)
Locale-independent conversion of ASCII isgraph.
#define AV_STEREO3D_FLAG_INVERT
Inverted views, Right/Bottom represents the left view.
AVStereo3D * av_stereo3d_create_side_data(AVFrame *frame)
Allocate a complete AVFrameSideData and add it to the frame.
@ AV_STEREO3D_SIDEBYSIDE
Views are next to each other.
const uint8_t ff_png_pass_ymask[NB_PASSES]
int ff_png_pass_row_size(int pass, int bits_per_pixel, int width)
int ff_png_get_nb_channels(int color_type)
Multithreading API for decoders.
Macro definitions for various function/variable attributes.
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static const uint16_t mask[17]
#define FFSWAP(type, a, b)
#define MKTAG(a, b, c, d)
Memory handling functions.
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
AVColorRange
Visual content value range.
@ AVCOL_RANGE_MPEG
Narrow or limited range content.
@ AVCOL_RANGE_UNSPECIFIED
@ AVCOL_RANGE_JPEG
Full range content.
@ AVALPHA_MODE_STRAIGHT
Alpha channel is independent of color values.
@ AV_PIX_FMT_GRAY16BE
Y , 16bpp, big-endian.
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
@ AV_PIX_FMT_YA16BE
16 bits gray, 16 bits alpha (big-endian)
@ AV_PIX_FMT_MONOBLACK
Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb.
@ AV_PIX_FMT_GRAY8A
alias for AV_PIX_FMT_YA8
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
@ AV_PIX_FMT_RGB48BE
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big...
@ AV_PIX_FMT_RGBA64BE
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
@ AV_PIX_FMT_YA8
8 bits gray, 8 bits alpha
AVColorPrimaries
Chromaticity coordinates of the source primaries.
@ AVCOL_PRI_NB
Not part of ABI.
@ AVCOL_PRI_BT709
also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP 177 Annex B
AVColorTransferCharacteristic
Color Transfer Characteristic.
@ AVCOL_TRC_GAMMA22
also ITU-R BT470M / ITU-R BT1700 625 PAL & SECAM
@ AVCOL_TRC_LINEAR
"Linear transfer characteristics"
@ AVCOL_TRC_GAMMA28
also ITU-R BT470BG
@ AVCOL_TRC_SMPTE428
SMPTE ST 428-1.
@ AVCOL_TRC_IEC61966_2_1
IEC 61966-2-1 (sRGB or sYCC)
@ AVCOL_TRC_NB
Not part of ABI.
@ AVCOL_SPC_RGB
order of coefficients is actually GBR, also IEC 61966-2-1 (sRGB), YZX and ST 428-1
#define PNG_COLOR_TYPE_RGB
#define PNG_COLOR_TYPE_RGB_ALPHA
#define PNG_COLOR_TYPE_GRAY_ALPHA
#define PNG_FILTER_VALUE_AVG
#define PNG_COLOR_MASK_PALETTE
#define PNG_FILTER_VALUE_UP
#define PNG_COLOR_TYPE_GRAY
#define PNG_COLOR_TYPE_PALETTE
#define PNG_FILTER_VALUE_PAETH
#define PNG_FILTER_VALUE_NONE
#define PNG_FILTER_TYPE_LOCO
#define PNG_FILTER_VALUE_SUB
static void apng_reset_background(PNGDecContext *s, const AVFrame *p)
static void handle_small_bpp(PNGDecContext *s, AVFrame *p)
static int decode_idat_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb, AVFrame *p)
static int png_decode_idat(PNGDecContext *s, GetByteContext *gb, uint8_t *dst, ptrdiff_t dst_stride)
#define PNG_ZBUF_MAX_DECOMPRESSED
static int decode_frame_common(AVCodecContext *avctx, PNGDecContext *s, AVFrame *p, const AVPacket *avpkt)
static int decode_sbit_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb)
#define UNROLL_FILTER(op)
static int decode_zbuf(AVBPrint *bp, const uint8_t *data, const uint8_t *data_end, void *logctx)
static int decode_plte_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb)
static const uint8_t png_pass_mask[NB_PASSES]
static int populate_avctx_color_fields(AVCodecContext *avctx, AVFrame *frame)
static int decode_text_to_exif(PNGDecContext *s, const char *txt_utf8)
static int decode_text_chunk(PNGDecContext *s, GetByteContext *gb, int compressed)
static av_cold int png_dec_end(AVCodecContext *avctx)
static void png_handle_row(PNGDecContext *s, uint8_t *dst, ptrdiff_t dst_stride)
static const uint8_t png_pass_dsp_ymask[NB_PASSES]
static void png_put_interlaced_row(uint8_t *dst, int width, int bits_per_pixel, int pass, int color_type, const uint8_t *src)
static av_cold int png_dec_init(AVCodecContext *avctx)
static void handle_p_frame_png(PNGDecContext *s, AVFrame *p)
static int decode_trns_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb)
static int percent_missing(PNGDecContext *s)
static int output_frame(PNGDecContext *s, AVFrame *f)
static int decode_ihdr_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb)
static void clear_frame_metadata(PNGDecContext *s)
#define YUV2RGB(NAME, TYPE)
static const uint8_t png_pass_dsp_mask[NB_PASSES]
static int decode_phys_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb)
static int decode_fctl_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb)
static int decode_exif_chunk(AVCodecContext *avctx, PNGDecContext *s, GetByteContext *gb)
static int decode_iccp_chunk(PNGDecContext *s, GetByteContext *gb)
static int handle_p_frame_apng(AVCodecContext *avctx, PNGDecContext *s, AVFrame *p)
static char * iso88591_to_utf8(const char *in, size_t size_in)
void ff_png_filter_row(PNGDSPContext *dsp, uint8_t *dst, int filter_type, const uint8_t *src, const uint8_t *last, int size, int bpp)
void ff_png_add_paeth_prediction(uint8_t *dst, const uint8_t *src, const uint8_t *top, int w, int bpp)
av_cold void ff_pngdsp_init(PNGDSPContext *dsp)
int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
void ff_thread_finish_setup(AVCodecContext *avctx)
If the codec defines update_thread_context(), call this when they are ready for the next thread to st...
Utilities for rational number calculation.
static volatile sig_atomic_t sig
A reference to a data buffer.
main external API structure.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
enum AVColorRange color_range
MPEG vs JPEG YUV range.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel.
int active_thread_type
Which multithreading methods are in use by the codec.
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
enum AVColorSpace colorspace
YUV colorspace type.
int discard_damaged_percentage
The percentage of damaged samples to discard a frame.
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
enum AVAlphaMode alpha_mode
Indicates how the alpha channel of the video is represented.
enum AVDiscard skip_frame
Skip decoding for selected frames.
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Struct that contains both white point location and primaries location, providing the complete descrip...
Content light level needed by to transmit HDR over HDMI (CTA-861.3).
unsigned MaxFALL
Max average light level per frame (cd/m^2).
unsigned MaxCLL
Max content light level (cd/m^2).
Structure to hold side data for an AVFrame.
This structure describes decoded (raw) audio or video data.
This structure stores compressed data.
int flags
A combination of AV_PKT_FLAG values.
Rational number (pair of numerator and denominator).
Stereo 3D type: this structure describes how two videos are packed within a single video surface,...
enum AVStereo3DType type
How views are packed within the video.
int flags
Additional information about the frame packing.
const uint8_t * buffer_end
void(* add_paeth_prediction)(uint8_t *dst, const uint8_t *src, const uint8_t *top, int w, int bpp)
void(* add_bytes_l2)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int w)
uint16_t mdcv_white_point[2]
uint16_t mdcv_primaries[3][2]
AVDictionary * frame_metadata
uint8_t transparent_color_be[6]
unsigned int tmp_row_size
ProgressFrame last_picture
enum PNGImageState pic_state
uint32_t display_primaries[3][2]
enum AVColorTransferCharacteristic cicp_trc
enum AVColorRange cicp_range
enum AVColorPrimaries cicp_primaries
enum PNGHeaderState hdr_state
unsigned int last_row_size
The ProgressFrame structure.
#define avpriv_request_sample(...)
static void error(const char *err)
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
void ff_inflate_end(FFZStream *zstream)
Wrapper around inflateEnd().
int ff_inflate_init(FFZStream *zstream, void *logctx)
Wrapper around inflateInit().