177#define M(chr) (1<<chr - 'A')
203 unsigned long dest_len = uncompressed_size;
205 if (uncompress(td->
tmp, &dest_len,
src, compressed_size) != Z_OK ||
206 dest_len != uncompressed_size)
211 s->dsp.predictor(td->
tmp, uncompressed_size);
218 int compressed_size,
int uncompressed_size)
221 const int8_t *
s =
src;
222 int ssize = compressed_size;
223 int dsize = uncompressed_size;
224 uint8_t *dend = d + dsize;
233 if ((dsize -= count) < 0 ||
234 (ssize -= count + 1) < 0)
242 if ((dsize -= count) < 0 ||
262 int ret =
rle(td->
tmp,
src, compressed_size, uncompressed_size);
268 ctx->dsp.predictor(td->
tmp, uncompressed_size);
274#define USHORT_RANGE (1 << 16)
275#define BITMAP_SIZE (1 << 13)
282 if ((
i == 0) || (bitmap[
i >> 3] & (1 << (
i & 7))))
296 for (
i = 0;
i < dsize; ++
i)
300#define HUF_ENCBITS 16
301#define HUF_ENCSIZE ((1 << HUF_ENCBITS) + 1)
305 uint64_t
c, n[59] = { 0 };
312 for (
i = 58;
i > 0; --
i) {
313 uint64_t nc = ((
c + n[
i]) >> 1);
322 freq[
i] = l | (n[l]++ << 6);
326#define SHORT_ZEROCODE_RUN 59
327#define LONG_ZEROCODE_RUN 63
328#define SHORTEST_LONG_RUN (2 + LONG_ZEROCODE_RUN - SHORT_ZEROCODE_RUN)
329#define LONGEST_LONG_RUN (255 + SHORTEST_LONG_RUN)
339 for (; im <= iM; im++) {
348 if (im + zerun > iM + 1)
358 if (im + zerun > iM + 1)
380 for (
int i = im;
i < iM;
i++) {
384 if (td->
he[j].
len > 32) {
388 if (td->
he[j].
len > 0)
406 if (td->
he[j].
len > 32) {
415 &td->
he[0].
len,
sizeof(td->
he[0]),
sizeof(td->
he[0].
len),
417 &td->
he[0].
sym,
sizeof(td->
he[0]),
sizeof(td->
he[0].
sym), 0);
421 int no, uint16_t *
out)
434 if (oe == 0 || oe +
run > no)
452 uint16_t *
dst,
int dst_size)
458 im = bytestream2_get_le32(gb);
459 iM = bytestream2_get_le32(gb);
461 nBits = bytestream2_get_le32(gb);
472 if (!td->
freq || !td->
he) {
491static inline void wdec14(uint16_t l, uint16_t
h, uint16_t *
a, uint16_t *
b)
496 int ai = ls + (hi & 1) + (hi >> 1);
498 int16_t bs = ai - hi;
505#define A_OFFSET (1 << (NBITS - 1))
506#define MOD_MASK ((1 << NBITS) - 1)
508static inline void wdec16(uint16_t l, uint16_t
h, uint16_t *
a, uint16_t *
b)
519 int ny,
int oy, uint16_t
mx)
521 int w14 = (
mx < (1 << 14));
522 int n = (nx > ny) ? ny : nx;
535 uint16_t *ey = in + oy * (ny - p2);
536 uint16_t i00, i01, i10, i11;
542 for (; py <= ey; py += oy2) {
544 uint16_t *ex = py + ox * (nx - p2);
546 for (; px <= ex; px += ox2) {
547 uint16_t *p01 = px + ox1;
548 uint16_t *p10 = px + oy1;
549 uint16_t *p11 = p10 + ox1;
552 wdec14(*px, *p10, &i00, &i10);
553 wdec14(*p01, *p11, &i01, &i11);
554 wdec14(i00, i01, px, p01);
555 wdec14(i10, i11, p10, p11);
557 wdec16(*px, *p10, &i00, &i10);
558 wdec16(*p01, *p11, &i01, &i11);
559 wdec16(i00, i01, px, p01);
560 wdec16(i10, i11, p10, p11);
565 uint16_t *p10 = px + oy1;
568 wdec14(*px, *p10, &i00, p10);
570 wdec16(*px, *p10, &i00, p10);
578 uint16_t *ex = py + ox * (nx - p2);
580 for (; px <= ex; px += ox2) {
581 uint16_t *p01 = px + ox1;
584 wdec14(*px, *p01, &i00, p01);
586 wdec16(*px, *p01, &i00, p01);
601 uint16_t maxval, min_non_zero, max_non_zero;
603 uint16_t *
tmp = (uint16_t *)td->
tmp;
622 min_non_zero = bytestream2_get_le16(&gb);
623 max_non_zero = bytestream2_get_le16(&gb);
629 if (min_non_zero <= max_non_zero)
631 max_non_zero - min_non_zero + 1);
645 for (
i = 0;
i <
s->nb_channels;
i++) {
653 for (j = 0; j < pixel_half_size; j++)
655 td->
xsize * pixel_half_size, maxval);
656 ptr += td->
xsize * td->
ysize * pixel_half_size;
664 for (j = 0; j <
s->nb_channels; j++) {
672 tmp_offset += pixel_half_size;
675 s->bbdsp.bswap16_buf(
out, in, td->
xsize * pixel_half_size);
677 memcpy(
out, in, td->
xsize * 2 * pixel_half_size);
687 int compressed_size,
int uncompressed_size,
690 unsigned long dest_len, expected_len = 0;
691 const uint8_t *in = td->
tmp;
695 for (
i = 0;
i <
s->nb_channels;
i++) {
698 }
else if (
s->channels[
i].pixel_type ==
EXR_HALF) {
705 dest_len = expected_len;
707 if (uncompress(td->
tmp, &dest_len,
src, compressed_size) != Z_OK) {
709 }
else if (dest_len != expected_len) {
715 for (
c = 0;
c <
s->nb_channels;
c++) {
717 const uint8_t *ptr[4];
723 ptr[1] = ptr[0] + td->
xsize;
724 ptr[2] = ptr[1] + td->
xsize;
725 in = ptr[2] + td->
xsize;
727 for (j = 0; j < td->
xsize; ++j) {
728 uint32_t
diff = ((unsigned)*(ptr[0]++) << 24) |
729 (*(ptr[1]++) << 16) |
737 ptr[1] = ptr[0] + td->
xsize;
738 in = ptr[1] + td->
xsize;
739 for (j = 0; j < td->
xsize; j++) {
740 uint32_t
diff = (*(ptr[0]++) << 8) | *(ptr[1]++);
748 ptr[1] = ptr[0] + td->
xsize;
749 ptr[2] = ptr[1] + td->
xsize;
750 ptr[3] = ptr[2] + td->
xsize;
751 in = ptr[3] + td->
xsize;
753 for (j = 0; j < td->
xsize; ++j) {
754 uint32_t
diff = ((uint32_t)*(ptr[0]++) << 24) |
755 (*(ptr[1]++) << 16) |
756 (*(ptr[2]++) << 8 ) |
772 uint16_t
shift = (
b[ 2] >> 2) & 15;
776 s[ 0] = (
b[0] << 8) |
b[1];
778 s[ 4] =
s[ 0] + ((((
b[ 2] << 4) | (
b[ 3] >> 4)) & 0x3f) <<
shift) -
bias;
779 s[ 8] =
s[ 4] + ((((
b[ 3] << 2) | (
b[ 4] >> 6)) & 0x3f) <<
shift) -
bias;
783 s[ 5] =
s[ 4] + ((((
b[ 5] << 4) | (
b[ 6] >> 4)) & 0x3f) <<
shift) -
bias;
784 s[ 9] =
s[ 8] + ((((
b[ 6] << 2) | (
b[ 7] >> 6)) & 0x3f) <<
shift) -
bias;
788 s[ 6] =
s[ 5] + ((((
b[ 8] << 4) | (
b[ 9] >> 4)) & 0x3f) <<
shift) -
bias;
789 s[10] =
s[ 9] + ((((
b[ 9] << 2) | (
b[10] >> 6)) & 0x3f) <<
shift) -
bias;
793 s[ 7] =
s[ 6] + ((((
b[11] << 4) | (
b[12] >> 4)) & 0x3f) <<
shift) -
bias;
794 s[11] =
s[10] + ((((
b[12] << 2) | (
b[13] >> 6)) & 0x3f) <<
shift) -
bias;
797 for (
i = 0;
i < 16; ++
i) {
809 s[0] = (
b[0] << 8) |
b[1];
816 for (
i = 1;
i < 16;
i++)
823 const int8_t *sr =
src;
824 int stay_to_uncompress = compressed_size;
825 int nb_b44_block_w, nb_b44_block_h;
826 int index_tl_x, index_tl_y, index_out, index_tmp;
827 uint16_t tmp_buffer[16];
829 int target_channel_offset = 0;
832 nb_b44_block_w = td->
xsize / 4;
833 if ((td->
xsize % 4) != 0)
836 nb_b44_block_h = td->
ysize / 4;
837 if ((td->
ysize % 4) != 0)
840 for (
c = 0;
c <
s->nb_channels;
c++) {
842 for (iY = 0; iY < nb_b44_block_h; iY++) {
843 for (iX = 0; iX < nb_b44_block_w; iX++) {
844 if (stay_to_uncompress < 3)
847 if (
src[compressed_size - stay_to_uncompress + 2] == 0xfc) {
850 stay_to_uncompress -= 3;
852 if (stay_to_uncompress < 14)
856 stay_to_uncompress -= 14;
863 for (y = index_tl_y; y <
FFMIN(index_tl_y + 4, td->
ysize); y++) {
864 for (x = index_tl_x; x <
FFMIN(index_tl_x + 4, td->
xsize); x++) {
866 index_tmp = (y-index_tl_y) * 4 + (x-index_tl_x);
873 target_channel_offset += 2;
875 if (stay_to_uncompress < td->ysize * td->
xsize * 4)
878 for (y = 0; y < td->
ysize; y++) {
883 target_channel_offset += 4;
885 stay_to_uncompress -= td->
ysize * td->
xsize * 4;
901 }
else if ((
val >> 8) == 0xff) {
916 const float b = .5f *
cosf(
M_PI / 16.f);
918 const float d = .5f *
cosf(3.f*
M_PI / 16.f);
919 const float e = .5f *
cosf(5.f*
M_PI / 16.f);
920 const float f = .5f *
cosf(3.f*
M_PI / 8.f);
921 const float g = .5f *
cosf(7.f*
M_PI / 16.f);
923 float alpha[4], beta[4], theta[4], gamma[4];
930 beta[0] =
b *
blk[1 * step] + d *
blk[3 * step] + e *
blk[5 * step] +
g *
blk[7 * step];
931 beta[1] = d *
blk[1 * step] -
g *
blk[3 * step] -
b *
blk[5 * step] - e *
blk[7 * step];
932 beta[2] = e *
blk[1 * step] -
b *
blk[3 * step] +
g *
blk[5 * step] + d *
blk[7 * step];
933 beta[3] =
g *
blk[1 * step] - e *
blk[3 * step] + d *
blk[5 * step] -
b *
blk[7 * step];
935 theta[0] =
a * (
blk[0 * step] +
blk[4 * step]);
936 theta[3] =
a * (
blk[0 * step] -
blk[4 * step]);
941 gamma[0] = theta[0] + theta[1];
942 gamma[1] = theta[3] + theta[2];
943 gamma[2] = theta[3] - theta[2];
944 gamma[3] = theta[0] - theta[1];
946 blk[0 * step] = gamma[0] + beta[0];
947 blk[1 * step] = gamma[1] + beta[1];
948 blk[2 * step] = gamma[2] + beta[2];
949 blk[3 * step] = gamma[3] + beta[3];
951 blk[4 * step] = gamma[3] - beta[3];
952 blk[5 * step] = gamma[2] - beta[2];
953 blk[6 * step] = gamma[1] - beta[1];
954 blk[7 * step] = gamma[0] - beta[0];
959 for (
int i = 0;
i < 8;
i++)
962 for (
int i = 0;
i < 8;
i++) {
969 float *
b,
float *
g,
float *
r)
971 *
r = y + 1.5747f * v;
972 *
g = y - 0.1873f *
u - 0.4682f * v;
973 *
b = y + 1.8556f *
u;
983 const float log_base =
expf(2.2f *
scale);
993 int64_t ac_size, dc_size, rle_usize, rle_csize, rle_raw_size;
994 int64_t ac_count, dc_count, ac_compression;
995 const int dc_w = (td->
xsize + 7) >> 3;
996 const int dc_h = (td->
ysize + 7) >> 3;
1001 if (compressed_size <= 88)
1008 if (
s->nb_channels < 3) {
1024 if ( compressed_size < (uint64_t)(lo_size | ac_size | dc_size | rle_csize) || compressed_size < 88LL + lo_size + ac_size + dc_size + rle_csize
1025 || ac_count > (uint64_t)INT_MAX/2
1034 if ((uint64_t)rle_raw_size > INT_MAX) {
1044 skip = bytestream2_get_le16(&gb);
1051 if (lo_usize > uncompressed_size)
1057 unsigned long dest_len;
1060 if (ac_count > 3LL * td->
xsize *
s->scan_lines_per_block)
1063 dest_len = ac_count * 2LL;
1069 switch (ac_compression) {
1076 if (uncompress(td->
ac_data, &dest_len, agb.
buffer, ac_size) != Z_OK ||
1077 dest_len != ac_count * 2LL)
1088 unsigned long dest_len;
1091 if (dc_count != dc_w * dc_h * 3)
1094 dest_len = dc_count * 2LL;
1101 (dest_len != dc_count * 2LL))
1110 if (rle_raw_size > 0 && rle_csize > 0 && rle_usize > 0) {
1111 unsigned long dest_len = rle_usize;
1113 if (2LL * td->
xsize * td->
ysize > rle_raw_size)
1124 if (uncompress(td->
rle_data, &dest_len, gb.
buffer, rle_csize) != Z_OK ||
1125 (dest_len != rle_usize))
1138 for (
int y = 0; y < td->
ysize; y += 8) {
1139 for (
int x = 0; x < td->
xsize; x += 8) {
1140 const int o =
s->nb_channels == 4;
1141 float *yb = td->
block[0];
1143 float *vb = td->
block[2];
1149 for (
int j = 0; j < 3; j++) {
1151 const int idx = (x >> 3) + (y >> 3) * dc_w + dc_w * dc_h * j;
1152 uint16_t *dc = (uint16_t *)td->
dc_data;
1164 y * td->
xsize *
s->nb_channels + td->
xsize * (o + 0) + x;
1166 y * td->
xsize *
s->nb_channels + td->
xsize * (o + 1) + x;
1168 y * td->
xsize *
s->nb_channels + td->
xsize * (o + 2) + x;
1170 for (
int yy = 0; yy < bh; yy++) {
1171 for (
int xx = 0; xx < bw; xx++) {
1172 const int idx = xx + yy * 8;
1182 bo += td->
xsize *
s->nb_channels;
1183 go += td->
xsize *
s->nb_channels;
1184 ro += td->
xsize *
s->nb_channels;
1188 y * td->
xsize *
s->nb_channels + td->
xsize * (o + 0) + x;
1190 y * td->
xsize *
s->nb_channels + td->
xsize * (o + 1) + x;
1192 y * td->
xsize *
s->nb_channels + td->
xsize * (o + 2) + x;
1194 for (
int yy = 0; yy < bh; yy++) {
1195 for (
int xx = 0; xx < bw; xx++) {
1196 const int idx = xx + yy * 8;
1198 convert(yb[idx],
ub[idx], vb[idx], &bo[xx], &go[xx], &ro[xx]);
1205 bo += td->
xsize *
s->nb_channels;
1206 go += td->
xsize *
s->nb_channels;
1207 ro += td->
xsize *
s->nb_channels;
1213 if (
s->nb_channels < 4)
1217 for (
int y = 0; y < td->
ysize && have_rle; y++) {
1222 for (
int x = 0; x < td->
xsize; x++)
1223 ao[x] = ai0[x] | (ai1[x] << 8);
1226 for (
int y = 0; y < td->
ysize && have_rle; y++) {
1231 for (
int x = 0; x < td->
xsize; x++) {
1232 uint16_t ha = ai0[x] | (ai1[x] << 8);
1243 int jobnr,
int threadnr)
1248 const uint8_t *channel_buffer[4] = { 0 };
1249 const uint8_t *buf =
s->buf;
1250 uint64_t line_offset, uncompressed_size;
1254 uint64_t tile_x, tile_y, tile_level_x, tile_level_y;
1256 int step =
s->desc->comp[0].step;
1257 int bxmin = 0, axmax = 0, window_xoffset = 0;
1258 int window_xmin, window_xmax, window_ymin, window_ymax;
1259 int data_xoffset, data_yoffset, data_window_offset, xsize, ysize;
1260 int i, x, buf_size =
s->buf_size;
1261 int c, rgb_channel_count;
1264 line_offset =
AV_RL64(
s->gb.buffer + jobnr * 8);
1267 if (buf_size < 20 || line_offset > buf_size - 20)
1270 src = buf + line_offset + 20;
1271 if (
s->is_multipart)
1280 if (data_size <= 0 || data_size > buf_size - line_offset - 20)
1283 if (tile_level_x || tile_level_y) {
1288 if (tile_x &&
s->tile_attr.xSize + (
int64_t)
FFMAX(
s->xmin, 0) >= INT_MAX / tile_x )
1290 if (tile_y &&
s->tile_attr.ySize + (
int64_t)
FFMAX(
s->ymin, 0) >= INT_MAX / tile_y )
1293 line =
s->ymin +
s->tile_attr.ySize * tile_y;
1294 col =
s->tile_attr.xSize * tile_x;
1296 if (line < s->ymin ||
line >
s->ymax ||
1297 s->xmin + col < s->xmin ||
s->xmin + col >
s->xmax)
1300 td->
ysize =
FFMIN(
s->tile_attr.ySize,
s->ydelta - tile_y *
s->tile_attr.ySize);
1301 td->
xsize =
FFMIN(
s->tile_attr.xSize,
s->xdelta - tile_x *
s->tile_attr.xSize);
1303 if (td->
xsize * (uint64_t)
s->current_channel_offset > INT_MAX ||
1310 if (buf_size < 8 || line_offset > buf_size - 8)
1313 src = buf + line_offset + 8;
1314 if (
s->is_multipart)
1318 if (line < s->ymin ||
line >
s->ymax)
1322 if (data_size <= 0 || data_size > buf_size - line_offset - 8)
1328 if (td->
xsize * (uint64_t)
s->current_channel_offset > INT_MAX ||
1335 if ((
s->compression ==
EXR_RAW && (data_size != uncompressed_size ||
1336 line_offset > buf_size - uncompressed_size)) ||
1337 (
s->compression !=
EXR_RAW && (data_size > uncompressed_size ||
1338 line_offset > buf_size - data_size))) {
1347 xsize = window_xmax - window_xmin;
1348 ysize = window_ymax - window_ymin;
1351 if (xsize <= 0 || ysize <= 0)
1358 window_xoffset =
FFMAX(0,
s->xmin);
1360 bxmin = window_xoffset * step;
1364 if(col + td->
xsize ==
s->xdelta) {
1365 window_xmax = avctx->
width;
1367 axmax =
FFMAX(0, (avctx->
width - (
s->xmax + 1))) * step;
1373 if (data_size < uncompressed_size || s->is_tile) {
1379 if (data_size < uncompressed_size) {
1387 switch (
s->compression) {
1422 if (
s->channel_offsets[3] >= 0)
1423 channel_buffer[3] =
src + (td->
xsize *
s->channel_offsets[3]) + data_window_offset;
1425 channel_buffer[0] =
src + (td->
xsize *
s->channel_offsets[0]) + data_window_offset;
1426 channel_buffer[1] =
src + (td->
xsize *
s->channel_offsets[1]) + data_window_offset;
1427 channel_buffer[2] =
src + (td->
xsize *
s->channel_offsets[2]) + data_window_offset;
1428 rgb_channel_count = 3;
1430 channel_buffer[0] =
src + (td->
xsize *
s->channel_offsets[1]) + data_window_offset;
1432 channel_buffer[1] = channel_buffer[3];
1433 rgb_channel_count = 1;
1437 for (
c = 0;
c <
s->desc->nb_components;
c++) {
1438 int plane =
s->desc->comp[
c].plane;
1439 ptr = p->data[plane] + window_ymin * p->linesize[plane] + (window_xmin * step) +
s->desc->comp[
c].offset;
1441 for (
i = 0;
i < ysize;
i++, ptr += p->linesize[plane]) {
1442 const uint8_t *
src = channel_buffer[
c];
1443 uint8_t *ptr_x = ptr + window_xoffset * step;
1447 memset(ptr, 0, bxmin);
1451 for (
int x = 0; x < xsize; x++, ptr_x += step)
1455 for (
int x = 0; x < xsize; x++, ptr_x += step)
1461 memset(ptr_x, 0, axmax);
1468 ptr = p->data[0] + window_ymin * p->linesize[0] + (window_xmin *
s->desc->nb_components * 2);
1470 for (
i = 0;
i < ysize;
i++, ptr += p->linesize[0]) {
1473 const uint8_t *
rgb[3];
1476 for (
c = 0;
c < rgb_channel_count;
c++) {
1477 rgb[
c] = channel_buffer[
c];
1480 if (channel_buffer[3])
1481 a = channel_buffer[3];
1483 ptr_x = (uint16_t *) ptr;
1486 memset(ptr_x, 0, bxmin);
1487 ptr_x += window_xoffset *
s->desc->nb_components;
1489 for (x = 0; x < xsize; x++) {
1490 for (
c = 0;
c < rgb_channel_count;
c++) {
1491 *ptr_x++ = bytestream_get_le32(&
rgb[
c]) >> 16;
1494 if (channel_buffer[3])
1495 *ptr_x++ = bytestream_get_le32(&
a) >> 16;
1499 memset(ptr_x, 0, axmax);
1504 if (channel_buffer[3])
1517 if (!bytestream2_peek_byte(gb))
1521 for (
int i = 0;
i < 2;
i++)
1522 while (bytestream2_get_byte(gb) != 0);
1542 const char *value_name,
1543 const char *value_type,
1544 unsigned int minimum_length)
1550 !strcmp(gb->
buffer, value_name)) {
1552 gb->
buffer += strlen(value_name) + 1;
1553 if (!strcmp(gb->
buffer, value_type)) {
1554 gb->
buffer += strlen(value_type) + 1;
1555 var_size = bytestream2_get_le32(gb);
1561 gb->
buffer -= strlen(value_name) + 1;
1563 "Unknown data type %s for header variable %s.\n",
1564 value_type, value_name);
1576 int layer_match = 0;
1578 int dup_channels = 0;
1580 s->current_channel_offset = 0;
1587 s->channel_offsets[0] = -1;
1588 s->channel_offsets[1] = -1;
1589 s->channel_offsets[2] = -1;
1590 s->channel_offsets[3] = -1;
1596 s->tile_attr.xSize = -1;
1597 s->tile_attr.ySize = -1;
1599 s->is_multipart = 0;
1602 s->current_part = 0;
1609 magic_number = bytestream2_get_le32(gb);
1610 if (magic_number != 20000630) {
1617 version = bytestream2_get_byte(gb);
1623 flags = bytestream2_get_le24(gb);
1628 s->is_multipart = 1;
1638 while (
s->is_multipart &&
s->current_part <
s->selected_part &&
1640 if (bytestream2_peek_byte(gb)) {
1644 if (!bytestream2_peek_byte(gb))
1651 if (!bytestream2_peek_byte(gb)) {
1652 if (!
s->is_multipart)
1655 if (
s->current_part ==
s->selected_part) {
1657 if (bytestream2_peek_byte(gb)) {
1661 if (!bytestream2_peek_byte(gb))
1666 if (!bytestream2_peek_byte(gb))
1672 "chlist", 38)) >= 0) {
1684 int channel_index = -1;
1687 if (strcmp(
s->layer,
"") != 0) {
1688 if (strncmp(ch_gb.
buffer,
s->layer, strlen(
s->layer)) == 0) {
1691 "Channel match layer : %s.\n", ch_gb.
buffer);
1692 ch_gb.
buffer += strlen(
s->layer);
1693 if (*ch_gb.
buffer ==
'.')
1698 "Channel doesn't match layer : %s.\n", ch_gb.
buffer);
1705 if (strlen(ch_gb.
buffer) == 1) {
1707 if (ch_chr >=
'A' && ch_chr <=
'Z')
1708 s->has_channel |=
M(ch_chr);
1729 "Unsupported channel %.256s.\n", ch_gb.
buffer);
1735 bytestream2_get_byte(&ch_gb))
1744 current_pixel_type = bytestream2_get_le32(&ch_gb);
1747 current_pixel_type);
1753 xsub = bytestream2_get_le32(&ch_gb);
1754 ysub = bytestream2_get_le32(&ch_gb);
1756 if (xsub != 1 || ysub != 1) {
1758 "Subsampling %dx%d",
1764 if (channel_index >= 0 &&
s->channel_offsets[channel_index] == -1) {
1766 s->pixel_type != current_pixel_type) {
1768 "RGB channels not of the same depth.\n");
1772 s->pixel_type = current_pixel_type;
1773 s->channel_offsets[channel_index] =
s->current_channel_offset;
1774 }
else if (channel_index >= 0) {
1776 "Multiple channels with index %d.\n", channel_index);
1777 if (++dup_channels > 10) {
1787 if (!new_channels) {
1792 s->channels = new_channels;
1794 channel = &
s->channels[
s->nb_channels - 1];
1795 channel->pixel_type = current_pixel_type;
1799 if (current_pixel_type ==
EXR_HALF) {
1800 s->current_channel_offset += 2;
1802 s->current_channel_offset += 4;
1805 if (!((
M(
'R') +
M(
'G') +
M(
'B')) & ~
s->has_channel)) {
1807 }
else if (!((
M(
'X') +
M(
'Y') +
M(
'Z')) & ~
s->has_channel)) {
1809 }
else if (!((
M(
'Y') +
M(
'U') +
M(
'V')) & ~
s->has_channel)) {
1811 }
else if (!((
M(
'Y') ) & ~
s->has_channel) &&
1812 !((
M(
'R') +
M(
'G') +
M(
'B') +
M(
'U') +
M(
'V') +
M(
'X') +
M(
'Z')) &
s->has_channel)) {
1823 if (
FFMIN3(
s->channel_offsets[0],
1824 s->channel_offsets[1],
1825 s->channel_offsets[2]) < 0) {
1826 if (
s->channel_offsets[0] < 0)
1828 if (
s->channel_offsets[1] < 0)
1830 if (
s->channel_offsets[2] < 0)
1842 int xmin, ymin, xmax, ymax;
1848 xmin = bytestream2_get_le32(gb);
1849 ymin = bytestream2_get_le32(gb);
1850 xmax = bytestream2_get_le32(gb);
1851 ymax = bytestream2_get_le32(gb);
1853 if (xmin > xmax || ymin > ymax ||
1854 ymax == INT_MAX || xmax == INT_MAX ||
1855 (
unsigned)xmax - xmin >= INT_MAX ||
1856 (
unsigned)ymax - ymin >= INT_MAX) {
1864 s->xdelta = (
s->xmax -
s->xmin) + 1;
1865 s->ydelta = (
s->ymax -
s->ymin) + 1;
1869 "box2i", 34)) >= 0) {
1877 sx = bytestream2_get_le32(gb);
1878 sy = bytestream2_get_le32(gb);
1879 dx = bytestream2_get_le32(gb);
1880 dy = bytestream2_get_le32(gb);
1882 s->w = (unsigned)dx - sx + 1;
1883 s->h = (unsigned)dy - sy + 1;
1887 "lineOrder", 25)) >= 0) {
1894 line_order = bytestream2_get_byte(gb);
1896 if (line_order > 2) {
1904 "float", 31)) >= 0) {
1910 s->sar = bytestream2_get_le32(gb);
1914 "compression", 29)) >= 0) {
1921 s->compression = bytestream2_get_byte(gb);
1925 "Found more than one compression attribute.\n");
1930 "tiledesc", 22)) >= 0) {
1935 "Found tile attribute and scanline flags. Exr will be interpreted as scanline.\n");
1937 s->tile_attr.xSize = bytestream2_get_le32(gb);
1938 s->tile_attr.ySize = bytestream2_get_le32(gb);
1940 tileLevel = bytestream2_get_byte(gb);
1941 s->tile_attr.level_mode = tileLevel & 0x0f;
1942 s->tile_attr.level_round = (tileLevel >> 4) & 0x0f;
1946 s->tile_attr.level_mode);
1953 s->tile_attr.level_round);
1960 "string", 1)) >= 0) {
1961 uint8_t
key[256] = { 0 };
1968 "rational", 33)) >= 0) {
1974 s->avctx->framerate.num = bytestream2_get_le32(gb);
1975 s->avctx->framerate.den = bytestream2_get_le32(gb);
1981 s->chunk_count = bytestream2_get_le32(gb);
1985 "string", 16)) >= 0) {
1986 uint8_t
key[256] = { 0 };
1989 if (strncmp(
"scanlineimage",
key, var_size) &&
1990 strncmp(
"tiledimage",
key, var_size)) {
1997 "preview", 16)) >= 0) {
1998 uint32_t pw = bytestream2_get_le32(gb);
1999 uint32_t
ph = bytestream2_get_le32(gb);
2000 uint64_t psize = pw * (uint64_t)
ph;
2001 if (psize > INT64_MAX / 4) {
2026 uint8_t
name[256] = { 0 };
2027 uint8_t
type[256] = { 0 };
2028 uint8_t
value[8192] = { 0 };
2032 bytestream2_peek_byte(gb) &&
i < 255) {
2033 name[
i++] = bytestream2_get_byte(gb);
2039 bytestream2_peek_byte(gb) &&
i < 255) {
2040 type[
i++] = bytestream2_get_byte(gb);
2043 size = bytestream2_get_le32(gb);
2048 if (!strcmp(
type,
"string"))
2060 if (
s->tile_attr.xSize < 1 ||
s->tile_attr.ySize < 1) {
2090 int i, y, ret, ymax;
2094 uint64_t start_offset_table;
2095 uint64_t start_next_scanline;
2104 for (
int i = 0;
i<
s->nb_channels;
i++) {
2106 if (
channel->pixel_type !=
s->pixel_type) {
2113 switch (
s->pixel_type) {
2115 if (
s->channel_offsets[3] >= 0) {
2130 if (
s->channel_offsets[3] >= 0) {
2145 if (
s->channel_offsets[3] >= 0) {
2164 if (
s->channel_offsets[3] >= 0)
2169 switch (
s->compression) {
2173 s->scan_lines_per_block = 1;
2177 s->scan_lines_per_block = 16;
2183 s->scan_lines_per_block = 32;
2186 s->scan_lines_per_block = 256;
2195 if (
s->xmin >
s->xmax ||
s->ymin >
s->ymax ||
2196 s->ydelta == 0xFFFFFFFF ||
s->xdelta == 0xFFFFFFFF) {
2214 out_line_size = avctx->
width *
s->desc->comp[0].step;
2217 if (
s->tile_attr.ySize <= 0 ||
s->tile_attr.xSize <= 0)
2219 nb_blocks = ((
s->xdelta +
s->tile_attr.xSize - 1) /
s->tile_attr.xSize) *
2220 ((
s->ydelta +
s->tile_attr.ySize - 1) /
s->tile_attr.ySize);
2222 nb_blocks = (
s->ydelta +
s->scan_lines_per_block - 1) /
2223 s->scan_lines_per_block;
2235 FFMIN(
s->tile_attr.ySize,
s->ydelta)
2237 FFMIN(
s->scan_lines_per_block,
s->ydelta);
2243 if (!
s->is_tile && bytestream2_peek_le64(gb) == 0) {
2249 if (!
s->offset_table)
2253 start_next_scanline = start_offset_table + nb_blocks * 8;
2256 for (y = 0; y < nb_blocks; y++) {
2258 bytestream2_put_le64(&offset_table_writer, start_next_scanline);
2262 start_next_scanline += (bytestream2_get_le32(gb) + 8);
2268 s->buf = avpkt->
data;
2269 s->buf_size = avpkt->
size;
2273 ptr = picture->
data[
i];
2274 for (y = 0; y <
FFMIN(
s->ymin,
s->h); y++) {
2275 memset(ptr, 0, out_line_size);
2280 s->picture = picture;
2284 ymax =
FFMAX(0,
s->ymax + 1);
2286 if (ymax < avctx->
height)
2289 for (y = ymax; y < avctx->
height; y++) {
2290 memset(ptr, 0, out_line_size);
2318 if (!
s->thread_data)
2350#define OFFSET(x) offsetof(EXRContext, x)
2351#define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
2353 {
"layer",
"Set the decoding layer",
OFFSET(layer),
2355 {
"part",
"Set the decoding part",
OFFSET(selected_part),
2361 .class_name =
"EXR",
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t mx
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static double val(void *priv, double ch)
const FFCodec ff_exr_decoder
static int decode_block(ALSDecContext *ctx, ALSBlockData *bd)
Decode the block data.
static AVFormatContext * ctx
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.
static void BS_FUNC skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_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_seek(GetByteContext *g, int offset, int whence)
static av_always_inline int bytestream2_tell(const GetByteContext *g)
#define bytestream2_get_ne16
static int FUNC metadata(CodedBitstreamContext *ctx, RWContext *rw, APVRawMetadata *current)
#define flags(name, subs,...)
#define i(width, name, range_min, range_max)
static int FUNC ph(CodedBitstreamContext *ctx, RWContext *rw, H266RawPH *current)
#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_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
common internal and external API header
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
static __device__ float fabsf(float a)
int ff_set_sar(AVCodecContext *avctx, AVRational sar)
Check that the provided sample aspect ratio is valid and set it on the codec context.
int ff_set_dimensions(AVCodecContext *s, int width, int height)
int(* init)(AVBSFContext *ctx)
channel
Use these values when setting the channel map with ebur128_set_channel().
static void idct_1d(float *blk, int step)
static int huf_unpack_enc_table(GetByteContext *gb, int32_t im, int32_t iM, uint64_t *freq)
static void wdec16(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
static int b44_uncompress(const EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
static int dwa_uncompress(const EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
static uint16_t reverse_lut(const uint8_t *bitmap, uint16_t *lut)
#define LONG_ZEROCODE_RUN
static int huf_build_dec_table(const EXRContext *s, EXRThreadData *td, int im, int iM)
static int zip_uncompress(const EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
static float to_linear(float x, float scale)
#define SHORT_ZEROCODE_RUN
static av_cold int decode_init(AVCodecContext *avctx)
static const AVClass exr_class
static int decode_header(EXRContext *s, AVFrame *frame)
static int ac_uncompress(const EXRContext *s, GetByteContext *gb, float *block)
static void unpack_14(const uint8_t b[14], uint16_t s[16])
static av_cold int decode_end(AVCodecContext *avctx)
static void skip_header_chunk(EXRContext *s)
static int huf_uncompress(const EXRContext *s, EXRThreadData *td, GetByteContext *gb, uint16_t *dst, int dst_size)
static void dct_inverse(float *block)
static void apply_lut(const uint16_t *lut, uint16_t *dst, int dsize)
static int pxr24_uncompress(const EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
static int huf_decode(VLC *vlc, GetByteContext *gb, int nbits, int run_sym, int no, uint16_t *out)
static void convert(float y, float u, float v, float *b, float *g, float *r)
static void unpack_3(const uint8_t b[3], uint16_t s[16])
static void huf_canonical_code_table(uint64_t *freq)
#define SHORTEST_LONG_RUN
static int rle_uncompress(const EXRContext *ctx, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
static int decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_frame, AVPacket *avpkt)
static void wav_decode(uint16_t *in, int nx, int ox, int ny, int oy, uint16_t mx)
static int check_header_variable(EXRContext *s, const char *value_name, const char *value_type, unsigned int minimum_length)
Check if the variable name corresponds to its data type.
static int piz_uncompress(const EXRContext *s, const uint8_t *src, int ssize, int dsize, EXRThreadData *td)
static void wdec14(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
static int decode_block(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr)
static int rle(uint8_t *dst, const uint8_t *src, int compressed_size, int uncompressed_size)
static uint16_t float2half(uint32_t f, const Float2HalfTables *t)
bitstream reader API header.
static av_always_inline int get_vlc2(GetBitContext *s, const VLCElem *table, int bits, int max_depth)
Parse a vlc code.
static int get_bits_left(GetBitContext *gb)
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
static int get_bits_count(const GetBitContext *s)
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
#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_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
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 AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#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_INFO
Standard information.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
const char * av_default_item_name(void *ptr)
Return the context name.
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
int av_image_check_size2(unsigned int w, unsigned int h, int64_t max_pixels, enum AVPixelFormat pix_fmt, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of a plane of an image with...
@ AV_PICTURE_TYPE_I
Intra.
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
static av_const int av_toupper(int c)
Locale-independent conversion of ASCII characters to uppercase.
#define LIBAVUTIL_VERSION_INT
static uint32_t half2float(uint16_t h, const Half2FloatTables *t)
static const int16_t alpha[]
static av_always_inline uint32_t av_float2int(float f)
Reinterpret a float as a 32-bit integer.
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
static void scale(int *out, const int *in, const int w, const int h, const int shift)
static av_cold int decode_init(AVCodecContext *avctx)
static av_cold int decode_end(AVCodecContext *avctx)
static int decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_frame, AVPacket *avpkt)
static int shift(int a, int b)
av_cold void ff_bswapdsp_init(BswapDSPContext *c)
#define u(width, name, range_min, range_max)
av_cold void ff_exrdsp_init(ExrDSPContext *c)
Multithreading API for decoders.
void ff_init_float2half_tables(Float2HalfTables *t)
void ff_init_half2float_tables(Half2FloatTables *t)
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 struct @257111027162314367033347246032313251342043035002 planes[]
const uint8_t ff_zigzag_direct[64]
void * av_calloc(size_t nmemb, size_t size)
Memory handling functions.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
#define AV_PIX_FMT_FLAG_FLOAT
The pixel format contains IEEE-754 floating point values.
#define AV_PIX_FMT_FLAG_PLANAR
At least one pixel component is not in the first data plane.
#define AV_PIX_FMT_GBRPF32
#define AV_PIX_FMT_GRAYF16
@ AVALPHA_MODE_PREMULTIPLIED
Alpha channel is multiplied into color values.
#define AV_PIX_FMT_GBRAPF16
#define AV_PIX_FMT_RGBA64
#define AV_PIX_FMT_GRAYF32
#define AV_PIX_FMT_GBRPF16
#define AV_PIX_FMT_GRAY16
@ AVCOL_TRC_LINEAR
"Linear transfer characteristics"
#define AV_PIX_FMT_GBRAPF32
int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
Describe the class of an AVClass context structure.
main external API structure.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int width
picture width / height.
int64_t max_pixels
The number of pixels per image to maximally accept.
int thread_count
thread count is used to decide how many independent tasks should be passed to execute()
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
enum AVAlphaMode alpha_mode
Indicates how the alpha channel of the video is represented.
int(* execute2)(struct AVCodecContext *c, int(*func)(struct AVCodecContext *c2, void *arg, int jobnr, int threadnr), void *arg2, int *ret, int count)
The codec may call this to execute several independent things.
enum AVDiscard skip_frame
Skip decoding for selected frames.
This structure describes decoded (raw) audio or video data.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
enum AVPictureType pict_type
Picture type of the frame.
This structure stores compressed data.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
enum ExrPixelType pixel_type
EXRTileAttribute tile_attr
int current_channel_offset
EXRThreadData * thread_data
int has_channel
combination of flags representing the channel codes A-Z
Half2FloatTables h2f_tables
Float2HalfTables f2h_tables
enum ExrCompr compression
enum ExrPixelType pixel_type
const AVPixFmtDescriptor * desc
uint8_t * uncompressed_data
enum ExrTileLevelRound level_round
enum ExrTileLevelMode level_mode
#define av_malloc_array(a, b)
#define av_realloc_f(p, o, n)
#define avpriv_request_sample(...)
static av_always_inline int diff(const struct color_info *a, const struct color_info *b, const int trans_thresh)
int ff_vlc_init_sparse(VLC *vlc, int nb_bits, int nb_codes, const void *bits, int bits_wrap, int bits_size, const void *codes, int codes_wrap, int codes_size, const void *symbols, int symbols_wrap, int symbols_size, int flags)
Build VLC decoding tables suitable for use with get_vlc2().
void ff_vlc_free(VLC *vlc)
static int bias(int x, int c)