150 #define HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP 0x38000000
154 #define HALF_FLOAT_MAX_BIASED_EXP_AS_SINGLE_FP_EXP 0x47800000
157 #define FLOAT_MAX_BIASED_EXP (0xFF << 23)
159 #define HALF_FLOAT_MAX_BIASED_EXP (0x1F << 10)
170 unsigned int sign = (
unsigned int) (hf >> 15);
171 unsigned int mantissa = (
unsigned int) (hf & ((1 << 10) - 1));
175 if (
exp == HALF_FLOAT_MAX_BIASED_EXP) {
181 mantissa = (1 << 23) - 1;
182 }
else if (
exp == 0x0) {
188 while ((mantissa & (1 << 10))) {
195 mantissa &= ((1 << 10) - 1);
206 f.
i = (sign << 31) |
exp | mantissa;
221 unsigned int exp = v >> 23;
224 if (exp <= 127 + 7 - 24)
229 return (v + (1 << 23)) >> (127 + 7 -
exp);
241 unsigned exp = 14 - (v >> 10);
246 return (v & 0x8000) ? 0 : 0xffff;
249 return (v + (1 << 16)) >> (exp + 1);
258 int d = (int) t[-1] + (
int) t[0] - 128;
266 const int8_t *
t1 =
src;
267 const int8_t *
t2 = src + (size + 1) / 2;
269 int8_t *stop = s +
size;
287 unsigned long dest_len = uncompressed_size;
289 if (uncompress(td->
tmp, &dest_len, src, compressed_size) != Z_OK ||
290 dest_len != uncompressed_size)
303 const int8_t *
s =
src;
304 int ssize = compressed_size;
305 int dsize = uncompressed_size;
315 if ((dsize -= count) < 0 ||
316 (ssize -= count + 1) < 0)
324 if ((dsize -= count) < 0 ||
344 #define USHORT_RANGE (1 << 16)
345 #define BITMAP_SIZE (1 << 13)
352 if ((i == 0) || (bitmap[i >> 3] & (1 << (i & 7))))
357 memset(lut + k, 0, (USHORT_RANGE - k) * 2);
362 static void apply_lut(
const uint16_t *lut, uint16_t *dst,
int dsize)
366 for (i = 0; i < dsize; ++
i)
367 dst[i] = lut[dst[i]];
370 #define HUF_ENCBITS 16 // literal (value) bit length
371 #define HUF_DECBITS 14 // decoding bit size (>= 8)
373 #define HUF_ENCSIZE ((1 << HUF_ENCBITS) + 1) // encoding table size
374 #define HUF_DECSIZE (1 << HUF_DECBITS) // decoding table size
375 #define HUF_DECMASK (HUF_DECSIZE - 1)
385 uint64_t
c,
n[59] = { 0 };
392 for (i = 58; i > 0; --i) {
393 uint64_t nc = ((c + n[i]) >> 1);
402 hcode[i] = l | (n[l]++ << 6);
406 #define SHORT_ZEROCODE_RUN 59
407 #define LONG_ZEROCODE_RUN 63
408 #define SHORTEST_LONG_RUN (2 + LONG_ZEROCODE_RUN - SHORT_ZEROCODE_RUN)
409 #define LONGEST_LONG_RUN (255 + SHORTEST_LONG_RUN)
419 for (; im <= iM; im++) {
425 if (im + zerun > iM + 1)
435 if (im + zerun > iM + 1)
454 for (; im <= iM; im++) {
455 uint64_t
c = hcode[
im] >> 6;
456 int i, l = hcode[
im] & 63;
476 for (i = 1 << (
HUF_DECBITS - l); i > 0; i--, pl++) {
477 if (pl->
len || pl->
p)
488 #define get_char(c, lc, gb) \
490 c = (c << 8) | bytestream2_get_byte(gb); \
494 #define get_code(po, rlc, c, lc, gb, out, oe, outb) \
498 get_char(c, lc, gb); \
503 if (out + cs > oe || out == outb) \
504 return AVERROR_INVALIDDATA; \
510 } else if (out < oe) { \
513 return AVERROR_INVALIDDATA; \
519 int rlc,
int no, uint16_t *
out)
522 uint16_t *outb =
out;
523 uint16_t *oe = out + no;
544 for (j = 0; j < pl.
lit; j++) {
545 int l = hcode[pl.
p[j]] & 63;
551 if ((hcode[pl.
p[j]] >> 6) ==
552 ((c >> (lc - l)) & ((1LL << l) - 1))) {
554 get_code(pl.
p[j], rlc, c, lc, gb, out, oe, outb);
581 if (out - outb != no)
587 uint16_t *dst,
int dst_size)
595 src_size = bytestream2_get_le32(gb);
596 im = bytestream2_get_le32(gb);
597 iM = bytestream2_get_le32(gb);
599 nBits = bytestream2_get_le32(gb);
609 if (!freq || !hdec) {
624 ret =
huf_decode(freq, hdec, gb, nBits, iM, dst_size, dst);
637 static inline void wdec14(uint16_t l, uint16_t
h, uint16_t *
a, uint16_t *
b)
642 int ai = ls + (hi & 1) + (hi >> 1);
644 int16_t bs = ai - hi;
651 #define A_OFFSET (1 << (NBITS - 1))
652 #define MOD_MASK ((1 << NBITS) - 1)
654 static inline void wdec16(uint16_t l, uint16_t
h, uint16_t *
a, uint16_t *
b)
665 int ny,
int oy, uint16_t mx)
667 int w14 = (mx < (1 << 14));
668 int n = (nx > ny) ? ny : nx;
681 uint16_t *ey = in + oy * (ny - p2);
682 uint16_t i00, i01, i10, i11;
688 for (; py <= ey; py += oy2) {
690 uint16_t *ex = py + ox * (nx - p2);
692 for (; px <= ex; px += ox2) {
693 uint16_t *p01 = px + ox1;
694 uint16_t *p10 = px + oy1;
695 uint16_t *p11 = p10 + ox1;
698 wdec14(*px, *p10, &i00, &i10);
699 wdec14(*p01, *p11, &i01, &i11);
700 wdec14(i00, i01, px, p01);
701 wdec14(i10, i11, p10, p11);
703 wdec16(*px, *p10, &i00, &i10);
704 wdec16(*p01, *p11, &i01, &i11);
705 wdec16(i00, i01, px, p01);
706 wdec16(i10, i11, p10, p11);
711 uint16_t *p10 = px + oy1;
714 wdec14(*px, *p10, &i00, p10);
716 wdec16(*px, *p10, &i00, p10);
724 uint16_t *ex = py + ox * (nx - p2);
726 for (; px <= ex; px += ox2) {
727 uint16_t *p01 = px + ox1;
730 wdec14(*px, *p01, &i00, p01);
732 wdec16(*px, *p01, &i00, p01);
747 uint16_t maxval, min_non_zero, max_non_zero;
749 uint16_t *
tmp = (uint16_t *)td->
tmp;
764 min_non_zero = bytestream2_get_le16(&gb);
765 max_non_zero = bytestream2_get_le16(&gb);
771 if (min_non_zero <= max_non_zero)
773 max_non_zero - min_non_zero + 1);
787 for (j = 0; j <
size; j++)
789 td->
xsize * size, maxval);
796 for (i = 0; i < td->
ysize; i++)
807 int compressed_size,
int uncompressed_size,
810 unsigned long dest_len, expected_len = 0;
825 dest_len = expected_len;
827 if (uncompress(td->
tmp, &dest_len, src, compressed_size) != Z_OK) {
829 }
else if (dest_len != expected_len) {
834 for (i = 0; i < td->
ysize; i++)
843 ptr[1] = ptr[0] + td->
xsize;
844 ptr[2] = ptr[1] + td->
xsize;
845 in = ptr[2] + td->
xsize;
847 for (j = 0; j < td->
xsize; ++j) {
848 uint32_t
diff = (*(ptr[0]++) << 24) |
849 (*(ptr[1]++) << 16) |
852 bytestream_put_le32(&out, pixel);
857 ptr[1] = ptr[0] + td->
xsize;
858 in = ptr[1] + td->
xsize;
859 for (j = 0; j < td->
xsize; j++) {
860 uint32_t
diff = (*(ptr[0]++) << 8) | *(ptr[1]++);
863 bytestream_put_le16(&out, pixel);
876 unsigned short shift = (b[ 2] >> 2);
877 unsigned short bias = (0x20 <<
shift);
880 s[ 0] = (b[0] << 8) | b[1];
882 s[ 4] = s[ 0] + ((((b[ 2] << 4) | (b[ 3] >> 4)) & 0x3f) <<
shift) - bias;
883 s[ 8] = s[ 4] + ((((b[ 3] << 2) | (b[ 4] >> 6)) & 0x3f) <<
shift) - bias;
884 s[12] = s[ 8] + ((b[ 4] & 0x3f) << shift) - bias;
886 s[ 1] = s[ 0] + ((b[ 5] >> 2) << shift) - bias;
887 s[ 5] = s[ 4] + ((((b[ 5] << 4) | (b[ 6] >> 4)) & 0x3f) <<
shift) - bias;
888 s[ 9] = s[ 8] + ((((b[ 6] << 2) | (b[ 7] >> 6)) & 0x3f) <<
shift) - bias;
889 s[13] = s[12] + ((b[ 7] & 0x3f) << shift) - bias;
891 s[ 2] = s[ 1] + ((b[ 8] >> 2) << shift) - bias;
892 s[ 6] = s[ 5] + ((((b[ 8] << 4) | (b[ 9] >> 4)) & 0x3f) <<
shift) - bias;
893 s[10] = s[ 9] + ((((b[ 9] << 2) | (b[10] >> 6)) & 0x3f) <<
shift) - bias;
894 s[14] = s[13] + ((b[10] & 0x3f) << shift) - bias;
896 s[ 3] = s[ 2] + ((b[11] >> 2) << shift) - bias;
897 s[ 7] = s[ 6] + ((((b[11] << 4) | (b[12] >> 4)) & 0x3f) <<
shift) - bias;
898 s[11] = s[10] + ((((b[12] << 2) | (b[13] >> 6)) & 0x3f) <<
shift) - bias;
899 s[15] = s[14] + ((b[13] & 0x3f) << shift) - bias;
901 for (i = 0; i < 16; ++i) {
913 s[0] = (b[0] << 8) | b[1];
920 for (i = 1; i < 16; i++)
927 const int8_t *sr =
src;
928 int stayToUncompress = compressed_size;
929 int nbB44BlockW, nbB44BlockH;
930 int indexHgX, indexHgY, indexOut, indexTmp;
931 uint16_t tmpBuffer[16];
933 int target_channel_offset = 0;
936 nbB44BlockW = td->
xsize / 4;
937 if ((td->
xsize % 4) != 0)
940 nbB44BlockH = td->
ysize / 4;
941 if ((td->
ysize % 4) != 0)
946 for (iY = 0; iY < nbB44BlockH; iY++) {
947 for (iX = 0; iX < nbB44BlockW; iX++) {
948 if (stayToUncompress < 3) {
953 if (src[compressed_size - stayToUncompress + 2] == 0xfc) {
956 stayToUncompress -= 3;
958 if (stayToUncompress < 14) {
964 stayToUncompress -= 14;
971 for (y = indexHgY; y <
FFMIN(indexHgY + 4, td->
ysize); y++) {
972 for (x = indexHgX; x <
FFMIN(indexHgX + 4, td->
xsize); x++) {
974 indexTmp = (y-indexHgY) * 4 + (x-indexHgX);
981 target_channel_offset += 2;
983 if (stayToUncompress < td->ysize * td->
xsize * 4) {
984 av_log(s,
AV_LOG_ERROR,
"Not enough data for uncompress channel: %d", stayToUncompress);
988 for (y = 0; y < td->
ysize; y++) {
993 target_channel_offset += 4;
995 stayToUncompress -= td->
ysize * td->
xsize * 4;
1003 int jobnr,
int threadnr)
1008 const uint8_t *channel_buffer[4] = { 0 };
1010 uint64_t line_offset, uncompressed_size;
1013 uint32_t data_size,
line, col = 0;
1014 uint32_t tileX, tileY, tileLevelX, tileLevelY;
1019 float one_gamma = 1.0f / s->
gamma;
1026 if (line_offset > buf_size - 20)
1029 src = buf + line_offset + 20;
1033 tileLevelX =
AV_RL32(src - 12);
1034 tileLevelY =
AV_RL32(src - 8);
1037 if (data_size <= 0 || data_size > buf_size)
1040 if (tileLevelX || tileLevelY) {
1061 if (line_offset > buf_size - 8)
1064 src = buf + line_offset + 8;
1071 if (data_size <= 0 || data_size > buf_size)
1081 line_offset > buf_size - uncompressed_size)) ||
1083 line_offset > buf_size - data_size))) {
1088 if (data_size < uncompressed_size || s->is_tile) {
1094 if (data_size < uncompressed_size) {
1141 r = channel_buffer[0];
1142 g = channel_buffer[1];
1143 b = channel_buffer[2];
1144 if (channel_buffer[3])
1145 a = channel_buffer[3];
1147 ptr_x = (uint16_t *) ptr;
1150 memset(ptr_x, 0, bxmin);
1156 for (x = 0; x < td->
xsize; x++) {
1158 t.
i = bytestream_get_le32(&r);
1159 t.
f = trc_func(t.
f);
1162 t.
i = bytestream_get_le32(&g);
1163 t.
f = trc_func(t.
f);
1166 t.
i = bytestream_get_le32(&b);
1167 t.
f = trc_func(t.
f);
1169 if (channel_buffer[3])
1173 for (x = 0; x < td->
xsize; x++) {
1175 t.
i = bytestream_get_le32(&r);
1177 t.
f =
powf(t.
f, one_gamma);
1180 t.
i = bytestream_get_le32(&g);
1182 t.
f =
powf(t.
f, one_gamma);
1185 t.
i = bytestream_get_le32(&b);
1187 t.
f =
powf(t.
f, one_gamma);
1189 if (channel_buffer[3])
1195 for (x = 0; x < td->
xsize; x++) {
1196 *ptr_x++ = s->
gamma_table[bytestream_get_le16(&r)];
1197 *ptr_x++ = s->
gamma_table[bytestream_get_le16(&g)];
1198 *ptr_x++ = s->
gamma_table[bytestream_get_le16(&b)];
1199 if (channel_buffer[3])
1205 memset(ptr_x, 0, axmax);
1210 if (channel_buffer[3])
1230 const char *value_name,
1231 const char *value_type,
1232 unsigned int minimum_length)
1237 !strcmp(s->
gb.
buffer, value_name)) {
1239 s->
gb.
buffer += strlen(value_name) + 1;
1240 if (!strcmp(s->
gb.
buffer, value_type)) {
1241 s->
gb.
buffer += strlen(value_type) + 1;
1242 var_size = bytestream2_get_le32(&s->
gb);
1248 s->
gb.
buffer -= strlen(value_name) + 1;
1250 "Unknown data type %s for header variable %s.\n",
1251 value_type, value_name);
1261 int layer_match = 0;
1288 magic_number = bytestream2_get_le32(&s->
gb);
1289 if (magic_number != 20000630) {
1296 version = bytestream2_get_byte(&s->
gb);
1302 flags = bytestream2_get_le24(&s->
gb);
1306 else if (flags & 0x02)
1317 "chlist", 38)) >= 0) {
1327 int channel_index = -1;
1330 if (strcmp(s->
layer,
"") != 0) {
1334 "Channel match layer : %s.\n", ch_gb.
buffer);
1336 if (*ch_gb.
buffer ==
'.')
1340 "Channel doesn't match layer : %s.\n", ch_gb.
buffer);
1347 if (!strcmp(ch_gb.
buffer,
"R") ||
1348 !strcmp(ch_gb.
buffer,
"X") ||
1349 !strcmp(ch_gb.
buffer,
"U"))
1351 else if (!strcmp(ch_gb.
buffer,
"G") ||
1352 !strcmp(ch_gb.
buffer,
"Y") ||
1353 !strcmp(ch_gb.
buffer,
"V"))
1355 else if (!strcmp(ch_gb.
buffer,
"B") ||
1356 !strcmp(ch_gb.
buffer,
"Z") ||
1357 !strcmp(ch_gb.
buffer,
"W"))
1359 else if (!strcmp(ch_gb.
buffer,
"A"))
1363 "Unsupported channel %.256s.\n", ch_gb.
buffer);
1368 bytestream2_get_byte(&ch_gb))
1376 current_pixel_type = bytestream2_get_le32(&ch_gb);
1379 current_pixel_type);
1384 xsub = bytestream2_get_le32(&ch_gb);
1385 ysub = bytestream2_get_le32(&ch_gb);
1386 if (xsub != 1 || ysub != 1) {
1388 "Subsampling %dx%d",
1394 if (channel_index >= 0) {
1398 "RGB channels not of the same depth.\n");
1412 channel->
xsub = xsub;
1413 channel->
ysub = ysub;
1440 s->
xmin = bytestream2_get_le32(&s->
gb);
1441 s->
ymin = bytestream2_get_le32(&s->
gb);
1442 s->
xmax = bytestream2_get_le32(&s->
gb);
1443 s->
ymax = bytestream2_get_le32(&s->
gb);
1449 "box2i", 34)) >= 0) {
1454 s->
w = bytestream2_get_le32(&s->
gb) + 1;
1455 s->
h = bytestream2_get_le32(&s->
gb) + 1;
1459 "lineOrder", 25)) >= 0) {
1464 line_order = bytestream2_get_byte(&s->
gb);
1466 if (line_order > 2) {
1473 "float", 31)) >= 0) {
1477 sar = bytestream2_get_le32(&s->
gb);
1481 "compression", 29)) >= 0) {
1489 "Found more than one compression attribute.\n");
1493 "tiledesc", 22)) >= 0) {
1498 "Found tile attribute and scanline flags. Exr will be interpreted as scanline.\n");
1503 tileLevel = bytestream2_get_byte(&s->
gb);
1529 for (i = 0; i < 2; i++)
1530 while (bytestream2_get_byte(&s->
gb) != 0);
1652 ptr = picture->
data[0];
1655 for (y = 0; y < s->
ymin; y++) {
1656 memset(ptr, 0, out_line_size);
1665 for (y = s->
ymax + 1; y < avctx->
height; y++) {
1666 memset(ptr, 0, out_line_size);
1681 float one_gamma = 1.0
f / s->
gamma;
1688 for (i = 0; i < 65536; ++
i) {
1690 t.
f = trc_func(t.
f);
1694 if (one_gamma > 0.9999
f && one_gamma < 1.0001
f) {
1695 for (i = 0; i < 65536; ++
i)
1698 for (i = 0; i < 65536; ++
i) {
1704 t.
f =
powf(t.
f, one_gamma);
1750 #define OFFSET(x) offsetof(EXRContext, x)
1751 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
1753 {
"layer",
"Set the decoding layer",
OFFSET(layer),
1755 {
"gamma",
"Set the float gamma value when decoding",
OFFSET(gamma),
1759 {
"apply_trc",
"color transfer characteristics to apply to EXR linear input",
OFFSET(apply_trc_type),
1761 {
"bt709",
"BT.709", 0,
1763 {
"gamma",
"gamma", 0,
1765 {
"gamma22",
"BT.470 M", 0,
1767 {
"gamma28",
"BT.470 BG", 0,
1769 {
"smpte170m",
"SMPTE 170 M", 0,
1771 {
"smpte240m",
"SMPTE 240 M", 0,
1773 {
"linear",
"Linear", 0,
1777 {
"log_sqrt",
"Log square root", 0,
1779 {
"iec61966_2_4",
"IEC 61966-2-4", 0,
1781 {
"bt1361",
"BT.1361", 0,
1783 {
"iec61966_2_1",
"IEC 61966-2-1", 0,
1785 {
"bt2020_10bit",
"BT.2020 - 10 bit", 0,
1787 {
"bt2020_12bit",
"BT.2020 - 12 bit", 0,
1789 {
"smpte2084",
"SMPTE ST 2084", 0,
1791 {
"smpte428_1",
"SMPTE ST 428-1", 0,
ITU-R BT2020 for 12-bit system.
static uint16_t exr_flt2uint(uint32_t v)
Convert from 32-bit float as uint32_t to uint16_t.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static int shift(int a, int b)
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
"Linear transfer characteristics"
static uint16_t reverse_lut(const uint8_t *bitmap, uint16_t *lut)
double(* avpriv_trc_function)(double)
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
#define AV_LOG_WARNING
Something somehow does not look correct.
static int init_thread_copy(AVCodecContext *avctx)
#define LIBAVUTIL_VERSION_INT
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
static av_cold int init(AVCodecContext *avctx)
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
#define AV_PIX_FMT_RGBA64
static int pxr24_uncompress(EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
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...
enum ExrPixelType pixel_type
static int decode_block(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr)
#define HALF_FLOAT_MAX_BIASED_EXP
AVColorTransferCharacteristic
Color Transfer Characteristic.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static void wav_decode(uint16_t *in, int nx, int ox, int ny, int oy, uint16_t mx)
#define get_code(po, rlc, c, lc, gb, out, oe, outb)
Multithreading support functions.
also ITU-R BT470M / ITU-R BT1700 625 PAL & SECAM
static int huf_uncompress(GetByteContext *gb, uint16_t *dst, int dst_size)
static int huf_build_dec_table(const uint64_t *hcode, int im, int iM, HufDec *hdecod)
#define get_char(c, lc, gb)
static int get_bits_count(const GetBitContext *s)
static const AVOption options[]
int ff_set_sar(AVCodecContext *avctx, AVRational sar)
Check that the provided sample aspect ratio is valid and set it on the codec context.
bitstream reader API header.
uint8_t * uncompressed_data
static int huf_decode(const uint64_t *hcode, const HufDec *hdecod, GetByteContext *gb, int nbits, int rlc, int no, uint16_t *out)
static void predictor(uint8_t *src, int size)
#define FLOAT_MAX_BIASED_EXP
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
ITU-R BT1361 Extended Colour Gamut.
static av_cold int decode_init(AVCodecContext *avctx)
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
uint16_t gamma_table[65536]
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
static void reorder_pixels(uint8_t *src, uint8_t *dst, int size)
enum AVColorTransferCharacteristic apply_trc_type
enum ExrPixelType pixel_type
const char * name
Name of the codec implementation.
#define LONG_ZEROCODE_RUN
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
int current_channel_offset
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
EXRThreadData * thread_data
static void unpack_3(const uint8_t b[3], uint16_t s[16])
uint8_t nb_components
The number of components each pixel has, (1-4)
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
enum AVPictureType pict_type
Picture type of the frame.
#define HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP
int width
picture width / height.
enum ExrCompr compression
static uint16_t exr_halflt2uint(uint16_t v)
Convert from 16-bit float as uint16_t to uint16_t.
EXRTileAttribute tile_attr
static void unpack_14(const uint8_t b[14], uint16_t s[16])
avpriv_trc_function avpriv_get_trc_function_from_trc(enum AVColorTransferCharacteristic trc)
Determine the function needed to apply the given AVColorTransferCharacteristic to linear input...
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
enum ExrTileLevelMode level_mode
#define SHORTEST_LONG_RUN
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.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
static int b44_uncompress(EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
#define AV_LOG_INFO
Standard information.
also ITU-R BT601-6 525 or 625 / ITU-R BT1358 525 or 625 / ITU-R BT1700 NTSC
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
main external API structure.
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
static int zip_uncompress(const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
Describe the class of an AVClass context structure.
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
"Logarithmic transfer characteristic (100 * Sqrt(10) : 1 range)"
static av_cold int decode_end(AVCodecContext *avctx)
static int rle_uncompress(const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
#define SHORT_ZEROCODE_RUN
static union av_intfloat32 exr_half2float(uint16_t hf)
Convert a half float as a uint16_t into a full float.
IEC 61966-2-1 (sRGB or sYCC)
common internal api header.
common internal and external API header
void * av_realloc(void *ptr, size_t size)
Allocate or reallocate a block of memory.
SMPTE ST 2084 for 10-, 12-, 14- and 16-bit systems.
static av_always_inline int diff(const uint32_t a, const uint32_t b)
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.
static int piz_uncompress(EXRContext *s, const uint8_t *src, int ssize, int dsize, EXRThreadData *td)
static void huf_canonical_code_table(uint64_t *hcode)
ITU-R BT2020 for 10-bit system.
static void * av_mallocz_array(size_t nmemb, size_t size)
static void apply_lut(const uint16_t *lut, uint16_t *dst, int dsize)
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
static void wdec14(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
static int decode_header(EXRContext *s)
static void wdec16(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
static int huf_unpack_enc_table(GetByteContext *gb, int32_t im, int32_t iM, uint64_t *hcode)
const AVPixFmtDescriptor * desc
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
This structure stores compressed data.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
static const AVClass exr_class
enum ExrTileLevelRound level_round
"Logarithmic transfer characteristic (100:1 range)"