FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
exr.c
Go to the documentation of this file.
1 /*
2  * OpenEXR (.exr) image decoder
3  * Copyright (c) 2009 Jimmy Christensen
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * OpenEXR decoder
25  * @author Jimmy Christensen
26  *
27  * For more information on the OpenEXR format, visit:
28  * http://openexr.com/
29  *
30  * exr_flt2uint() and exr_halflt2uint() is credited to Reimar Döffinger.
31  * exr_half2float() is credited to Aaftab Munshi, Dan Ginsburg, Dave Shreiner.
32  */
33 
34 #include <float.h>
35 #include <zlib.h>
36 
37 #include "libavutil/imgutils.h"
38 #include "libavutil/intfloat.h"
39 #include "libavutil/opt.h"
40 #include "libavutil/color_utils.h"
41 
42 #include "avcodec.h"
43 #include "bytestream.h"
44 #include "get_bits.h"
45 #include "internal.h"
46 #include "mathops.h"
47 #include "thread.h"
48 
49 enum ExrCompr {
59 };
60 
66 };
67 
68 typedef struct EXRChannel {
69  int xsub, ysub;
71 } EXRChannel;
72 
73 typedef struct EXRThreadData {
76 
78  int tmp_size;
79 
81  uint16_t *lut;
83 
84 typedef struct EXRContext {
85  AVClass *class;
88 
91  int channel_offsets[4]; // 0 = red, 1 = green, 2 = blue and 3 = alpha
93 
94  int w, h;
95  uint32_t xmax, xmin;
96  uint32_t ymax, ymin;
97  uint32_t xdelta, ydelta;
98  int ysize;
99 
100  uint64_t scan_line_size;
102 
104  const uint8_t *buf;
105  int buf_size;
106 
109 
111 
112  const char *layer;
113 
115  float gamma;
116  uint16_t gamma_table[65536];
117 } EXRContext;
118 
119 /* -15 stored using a single precision bias of 127 */
120 #define HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP 0x38000000
121 
122 /* max exponent value in single precision that will be converted
123  * to Inf or Nan when stored as a half-float */
124 #define HALF_FLOAT_MAX_BIASED_EXP_AS_SINGLE_FP_EXP 0x47800000
125 
126 /* 255 is the max exponent biased value */
127 #define FLOAT_MAX_BIASED_EXP (0xFF << 23)
128 
129 #define HALF_FLOAT_MAX_BIASED_EXP (0x1F << 10)
130 
131 /**
132  * Convert a half float as a uint16_t into a full float.
133  *
134  * @param hf half float as uint16_t
135  *
136  * @return float value
137  */
138 static union av_intfloat32 exr_half2float(uint16_t hf)
139 {
140  unsigned int sign = (unsigned int) (hf >> 15);
141  unsigned int mantissa = (unsigned int) (hf & ((1 << 10) - 1));
142  unsigned int exp = (unsigned int) (hf & HALF_FLOAT_MAX_BIASED_EXP);
143  union av_intfloat32 f;
144 
145  if (exp == HALF_FLOAT_MAX_BIASED_EXP) {
146  // we have a half-float NaN or Inf
147  // half-float NaNs will be converted to a single precision NaN
148  // half-float Infs will be converted to a single precision Inf
150  if (mantissa)
151  mantissa = (1 << 23) - 1; // set all bits to indicate a NaN
152  } else if (exp == 0x0) {
153  // convert half-float zero/denorm to single precision value
154  if (mantissa) {
155  mantissa <<= 1;
157  // check for leading 1 in denorm mantissa
158  while ((mantissa & (1 << 10))) {
159  // for every leading 0, decrement single precision exponent by 1
160  // and shift half-float mantissa value to the left
161  mantissa <<= 1;
162  exp -= (1 << 23);
163  }
164  // clamp the mantissa to 10-bits
165  mantissa &= ((1 << 10) - 1);
166  // shift left to generate single-precision mantissa of 23-bits
167  mantissa <<= 13;
168  }
169  } else {
170  // shift left to generate single-precision mantissa of 23-bits
171  mantissa <<= 13;
172  // generate single precision biased exponent value
174  }
175 
176  f.i = (sign << 31) | exp | mantissa;
177 
178  return f;
179 }
180 
181 
182 /**
183  * Convert from 32-bit float as uint32_t to uint16_t.
184  *
185  * @param v 32-bit float
186  *
187  * @return normalized 16-bit unsigned int
188  */
189 static inline uint16_t exr_flt2uint(uint32_t v)
190 {
191  unsigned int exp = v >> 23;
192  // "HACK": negative values result in exp< 0, so clipping them to 0
193  // is also handled by this condition, avoids explicit check for sign bit.
194  if (exp <= 127 + 7 - 24) // we would shift out all bits anyway
195  return 0;
196  if (exp >= 127)
197  return 0xffff;
198  v &= 0x007fffff;
199  return (v + (1 << 23)) >> (127 + 7 - exp);
200 }
201 
202 /**
203  * Convert from 16-bit float as uint16_t to uint16_t.
204  *
205  * @param v 16-bit float
206  *
207  * @return normalized 16-bit unsigned int
208  */
209 static inline uint16_t exr_halflt2uint(uint16_t v)
210 {
211  unsigned exp = 14 - (v >> 10);
212  if (exp >= 14) {
213  if (exp == 14)
214  return (v >> 9) & 1;
215  else
216  return (v & 0x8000) ? 0 : 0xffff;
217  }
218  v <<= 6;
219  return (v + (1 << 16)) >> (exp + 1);
220 }
221 
222 static void predictor(uint8_t *src, int size)
223 {
224  uint8_t *t = src + 1;
225  uint8_t *stop = src + size;
226 
227  while (t < stop) {
228  int d = (int) t[-1] + (int) t[0] - 128;
229  t[0] = d;
230  ++t;
231  }
232 }
233 
234 static void reorder_pixels(uint8_t *src, uint8_t *dst, int size)
235 {
236  const int8_t *t1 = src;
237  const int8_t *t2 = src + (size + 1) / 2;
238  int8_t *s = dst;
239  int8_t *stop = s + size;
240 
241  while (1) {
242  if (s < stop)
243  *(s++) = *(t1++);
244  else
245  break;
246 
247  if (s < stop)
248  *(s++) = *(t2++);
249  else
250  break;
251  }
252 }
253 
254 static int zip_uncompress(const uint8_t *src, int compressed_size,
255  int uncompressed_size, EXRThreadData *td)
256 {
257  unsigned long dest_len = uncompressed_size;
258 
259  if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK ||
260  dest_len != uncompressed_size)
261  return AVERROR_INVALIDDATA;
262 
263  predictor(td->tmp, uncompressed_size);
264  reorder_pixels(td->tmp, td->uncompressed_data, uncompressed_size);
265 
266  return 0;
267 }
268 
269 static int rle_uncompress(const uint8_t *src, int compressed_size,
270  int uncompressed_size, EXRThreadData *td)
271 {
272  uint8_t *d = td->tmp;
273  const int8_t *s = src;
274  int ssize = compressed_size;
275  int dsize = uncompressed_size;
276  uint8_t *dend = d + dsize;
277  int count;
278 
279  while (ssize > 0) {
280  count = *s++;
281 
282  if (count < 0) {
283  count = -count;
284 
285  if ((dsize -= count) < 0 ||
286  (ssize -= count + 1) < 0)
287  return AVERROR_INVALIDDATA;
288 
289  while (count--)
290  *d++ = *s++;
291  } else {
292  count++;
293 
294  if ((dsize -= count) < 0 ||
295  (ssize -= 2) < 0)
296  return AVERROR_INVALIDDATA;
297 
298  while (count--)
299  *d++ = *s;
300 
301  s++;
302  }
303  }
304 
305  if (dend != d)
306  return AVERROR_INVALIDDATA;
307 
308  predictor(td->tmp, uncompressed_size);
309  reorder_pixels(td->tmp, td->uncompressed_data, uncompressed_size);
310 
311  return 0;
312 }
313 
314 #define USHORT_RANGE (1 << 16)
315 #define BITMAP_SIZE (1 << 13)
316 
317 static uint16_t reverse_lut(const uint8_t *bitmap, uint16_t *lut)
318 {
319  int i, k = 0;
320 
321  for (i = 0; i < USHORT_RANGE; i++)
322  if ((i == 0) || (bitmap[i >> 3] & (1 << (i & 7))))
323  lut[k++] = i;
324 
325  i = k - 1;
326 
327  memset(lut + k, 0, (USHORT_RANGE - k) * 2);
328 
329  return i;
330 }
331 
332 static void apply_lut(const uint16_t *lut, uint16_t *dst, int dsize)
333 {
334  int i;
335 
336  for (i = 0; i < dsize; ++i)
337  dst[i] = lut[dst[i]];
338 }
339 
340 #define HUF_ENCBITS 16 // literal (value) bit length
341 #define HUF_DECBITS 14 // decoding bit size (>= 8)
342 
343 #define HUF_ENCSIZE ((1 << HUF_ENCBITS) + 1) // encoding table size
344 #define HUF_DECSIZE (1 << HUF_DECBITS) // decoding table size
345 #define HUF_DECMASK (HUF_DECSIZE - 1)
346 
347 typedef struct HufDec {
348  int len;
349  int lit;
350  int *p;
351 } HufDec;
352 
353 static void huf_canonical_code_table(uint64_t *hcode)
354 {
355  uint64_t c, n[59] = { 0 };
356  int i;
357 
358  for (i = 0; i < HUF_ENCSIZE; ++i)
359  n[hcode[i]] += 1;
360 
361  c = 0;
362  for (i = 58; i > 0; --i) {
363  uint64_t nc = ((c + n[i]) >> 1);
364  n[i] = c;
365  c = nc;
366  }
367 
368  for (i = 0; i < HUF_ENCSIZE; ++i) {
369  int l = hcode[i];
370 
371  if (l > 0)
372  hcode[i] = l | (n[l]++ << 6);
373  }
374 }
375 
376 #define SHORT_ZEROCODE_RUN 59
377 #define LONG_ZEROCODE_RUN 63
378 #define SHORTEST_LONG_RUN (2 + LONG_ZEROCODE_RUN - SHORT_ZEROCODE_RUN)
379 #define LONGEST_LONG_RUN (255 + SHORTEST_LONG_RUN)
380 
382  int32_t im, int32_t iM, uint64_t *hcode)
383 {
384  GetBitContext gbit;
385  int ret = init_get_bits8(&gbit, gb->buffer, bytestream2_get_bytes_left(gb));
386  if (ret < 0)
387  return ret;
388 
389  for (; im <= iM; im++) {
390  uint64_t l = hcode[im] = get_bits(&gbit, 6);
391 
392  if (l == LONG_ZEROCODE_RUN) {
393  int zerun = get_bits(&gbit, 8) + SHORTEST_LONG_RUN;
394 
395  if (im + zerun > iM + 1)
396  return AVERROR_INVALIDDATA;
397 
398  while (zerun--)
399  hcode[im++] = 0;
400 
401  im--;
402  } else if (l >= SHORT_ZEROCODE_RUN) {
403  int zerun = l - SHORT_ZEROCODE_RUN + 2;
404 
405  if (im + zerun > iM + 1)
406  return AVERROR_INVALIDDATA;
407 
408  while (zerun--)
409  hcode[im++] = 0;
410 
411  im--;
412  }
413  }
414 
415  bytestream2_skip(gb, (get_bits_count(&gbit) + 7) / 8);
417 
418  return 0;
419 }
420 
421 static int huf_build_dec_table(const uint64_t *hcode, int im,
422  int iM, HufDec *hdecod)
423 {
424  for (; im <= iM; im++) {
425  uint64_t c = hcode[im] >> 6;
426  int i, l = hcode[im] & 63;
427 
428  if (c >> l)
429  return AVERROR_INVALIDDATA;
430 
431  if (l > HUF_DECBITS) {
432  HufDec *pl = hdecod + (c >> (l - HUF_DECBITS));
433  if (pl->len)
434  return AVERROR_INVALIDDATA;
435 
436  pl->lit++;
437 
438  pl->p = av_realloc(pl->p, pl->lit * sizeof(int));
439  if (!pl->p)
440  return AVERROR(ENOMEM);
441 
442  pl->p[pl->lit - 1] = im;
443  } else if (l) {
444  HufDec *pl = hdecod + (c << (HUF_DECBITS - l));
445 
446  for (i = 1 << (HUF_DECBITS - l); i > 0; i--, pl++) {
447  if (pl->len || pl->p)
448  return AVERROR_INVALIDDATA;
449  pl->len = l;
450  pl->lit = im;
451  }
452  }
453  }
454 
455  return 0;
456 }
457 
458 #define get_char(c, lc, gb) \
459 { \
460  c = (c << 8) | bytestream2_get_byte(gb); \
461  lc += 8; \
462 }
463 
464 #define get_code(po, rlc, c, lc, gb, out, oe, outb) \
465 { \
466  if (po == rlc) { \
467  if (lc < 8) \
468  get_char(c, lc, gb); \
469  lc -= 8; \
470  \
471  cs = c >> lc; \
472  \
473  if (out + cs > oe || out == outb) \
474  return AVERROR_INVALIDDATA; \
475  \
476  s = out[-1]; \
477  \
478  while (cs-- > 0) \
479  *out++ = s; \
480  } else if (out < oe) { \
481  *out++ = po; \
482  } else { \
483  return AVERROR_INVALIDDATA; \
484  } \
485 }
486 
487 static int huf_decode(const uint64_t *hcode, const HufDec *hdecod,
488  GetByteContext *gb, int nbits,
489  int rlc, int no, uint16_t *out)
490 {
491  uint64_t c = 0;
492  uint16_t *outb = out;
493  uint16_t *oe = out + no;
494  const uint8_t *ie = gb->buffer + (nbits + 7) / 8; // input byte size
495  uint8_t cs, s;
496  int i, lc = 0;
497 
498  while (gb->buffer < ie) {
499  get_char(c, lc, gb);
500 
501  while (lc >= HUF_DECBITS) {
502  const HufDec pl = hdecod[(c >> (lc - HUF_DECBITS)) & HUF_DECMASK];
503 
504  if (pl.len) {
505  lc -= pl.len;
506  get_code(pl.lit, rlc, c, lc, gb, out, oe, outb);
507  } else {
508  int j;
509 
510  if (!pl.p)
511  return AVERROR_INVALIDDATA;
512 
513  for (j = 0; j < pl.lit; j++) {
514  int l = hcode[pl.p[j]] & 63;
515 
516  while (lc < l && bytestream2_get_bytes_left(gb) > 0)
517  get_char(c, lc, gb);
518 
519  if (lc >= l) {
520  if ((hcode[pl.p[j]] >> 6) ==
521  ((c >> (lc - l)) & ((1LL << l) - 1))) {
522  lc -= l;
523  get_code(pl.p[j], rlc, c, lc, gb, out, oe, outb);
524  break;
525  }
526  }
527  }
528 
529  if (j == pl.lit)
530  return AVERROR_INVALIDDATA;
531  }
532  }
533  }
534 
535  i = (8 - nbits) & 7;
536  c >>= i;
537  lc -= i;
538 
539  while (lc > 0) {
540  const HufDec pl = hdecod[(c << (HUF_DECBITS - lc)) & HUF_DECMASK];
541 
542  if (pl.len) {
543  lc -= pl.len;
544  get_code(pl.lit, rlc, c, lc, gb, out, oe, outb);
545  } else {
546  return AVERROR_INVALIDDATA;
547  }
548  }
549 
550  if (out - outb != no)
551  return AVERROR_INVALIDDATA;
552  return 0;
553 }
554 
556  uint16_t *dst, int dst_size)
557 {
558  int32_t src_size, im, iM;
559  uint32_t nBits;
560  uint64_t *freq;
561  HufDec *hdec;
562  int ret, i;
563 
564  src_size = bytestream2_get_le32(gb);
565  im = bytestream2_get_le32(gb);
566  iM = bytestream2_get_le32(gb);
567  bytestream2_skip(gb, 4);
568  nBits = bytestream2_get_le32(gb);
569  if (im < 0 || im >= HUF_ENCSIZE ||
570  iM < 0 || iM >= HUF_ENCSIZE ||
571  src_size < 0)
572  return AVERROR_INVALIDDATA;
573 
574  bytestream2_skip(gb, 4);
575 
576  freq = av_mallocz_array(HUF_ENCSIZE, sizeof(*freq));
577  hdec = av_mallocz_array(HUF_DECSIZE, sizeof(*hdec));
578  if (!freq || !hdec) {
579  ret = AVERROR(ENOMEM);
580  goto fail;
581  }
582 
583  if ((ret = huf_unpack_enc_table(gb, im, iM, freq)) < 0)
584  goto fail;
585 
586  if (nBits > 8 * bytestream2_get_bytes_left(gb)) {
587  ret = AVERROR_INVALIDDATA;
588  goto fail;
589  }
590 
591  if ((ret = huf_build_dec_table(freq, im, iM, hdec)) < 0)
592  goto fail;
593  ret = huf_decode(freq, hdec, gb, nBits, iM, dst_size, dst);
594 
595 fail:
596  for (i = 0; i < HUF_DECSIZE; i++)
597  if (hdec)
598  av_freep(&hdec[i].p);
599 
600  av_free(freq);
601  av_free(hdec);
602 
603  return ret;
604 }
605 
606 static inline void wdec14(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
607 {
608  int16_t ls = l;
609  int16_t hs = h;
610  int hi = hs;
611  int ai = ls + (hi & 1) + (hi >> 1);
612  int16_t as = ai;
613  int16_t bs = ai - hi;
614 
615  *a = as;
616  *b = bs;
617 }
618 
619 #define NBITS 16
620 #define A_OFFSET (1 << (NBITS - 1))
621 #define MOD_MASK ((1 << NBITS) - 1)
622 
623 static inline void wdec16(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
624 {
625  int m = l;
626  int d = h;
627  int bb = (m - (d >> 1)) & MOD_MASK;
628  int aa = (d + bb - A_OFFSET) & MOD_MASK;
629  *b = bb;
630  *a = aa;
631 }
632 
633 static void wav_decode(uint16_t *in, int nx, int ox,
634  int ny, int oy, uint16_t mx)
635 {
636  int w14 = (mx < (1 << 14));
637  int n = (nx > ny) ? ny : nx;
638  int p = 1;
639  int p2;
640 
641  while (p <= n)
642  p <<= 1;
643 
644  p >>= 1;
645  p2 = p;
646  p >>= 1;
647 
648  while (p >= 1) {
649  uint16_t *py = in;
650  uint16_t *ey = in + oy * (ny - p2);
651  uint16_t i00, i01, i10, i11;
652  int oy1 = oy * p;
653  int oy2 = oy * p2;
654  int ox1 = ox * p;
655  int ox2 = ox * p2;
656 
657  for (; py <= ey; py += oy2) {
658  uint16_t *px = py;
659  uint16_t *ex = py + ox * (nx - p2);
660 
661  for (; px <= ex; px += ox2) {
662  uint16_t *p01 = px + ox1;
663  uint16_t *p10 = px + oy1;
664  uint16_t *p11 = p10 + ox1;
665 
666  if (w14) {
667  wdec14(*px, *p10, &i00, &i10);
668  wdec14(*p01, *p11, &i01, &i11);
669  wdec14(i00, i01, px, p01);
670  wdec14(i10, i11, p10, p11);
671  } else {
672  wdec16(*px, *p10, &i00, &i10);
673  wdec16(*p01, *p11, &i01, &i11);
674  wdec16(i00, i01, px, p01);
675  wdec16(i10, i11, p10, p11);
676  }
677  }
678 
679  if (nx & p) {
680  uint16_t *p10 = px + oy1;
681 
682  if (w14)
683  wdec14(*px, *p10, &i00, p10);
684  else
685  wdec16(*px, *p10, &i00, p10);
686 
687  *px = i00;
688  }
689  }
690 
691  if (ny & p) {
692  uint16_t *px = py;
693  uint16_t *ex = py + ox * (nx - p2);
694 
695  for (; px <= ex; px += ox2) {
696  uint16_t *p01 = px + ox1;
697 
698  if (w14)
699  wdec14(*px, *p01, &i00, p01);
700  else
701  wdec16(*px, *p01, &i00, p01);
702 
703  *px = i00;
704  }
705  }
706 
707  p2 = p;
708  p >>= 1;
709  }
710 }
711 
712 static int piz_uncompress(EXRContext *s, const uint8_t *src, int ssize,
713  int dsize, EXRThreadData *td)
714 {
715  GetByteContext gb;
716  uint16_t maxval, min_non_zero, max_non_zero;
717  uint16_t *ptr;
718  uint16_t *tmp = (uint16_t *)td->tmp;
719  uint8_t *out;
720  int ret, i, j;
721 
722  if (!td->bitmap)
724  if (!td->lut)
725  td->lut = av_malloc(1 << 17);
726  if (!td->bitmap || !td->lut) {
727  av_freep(&td->bitmap);
728  av_freep(&td->lut);
729  return AVERROR(ENOMEM);
730  }
731 
732  bytestream2_init(&gb, src, ssize);
733  min_non_zero = bytestream2_get_le16(&gb);
734  max_non_zero = bytestream2_get_le16(&gb);
735 
736  if (max_non_zero >= BITMAP_SIZE)
737  return AVERROR_INVALIDDATA;
738 
739  memset(td->bitmap, 0, FFMIN(min_non_zero, BITMAP_SIZE));
740  if (min_non_zero <= max_non_zero)
741  bytestream2_get_buffer(&gb, td->bitmap + min_non_zero,
742  max_non_zero - min_non_zero + 1);
743  memset(td->bitmap + max_non_zero, 0, BITMAP_SIZE - max_non_zero);
744 
745  maxval = reverse_lut(td->bitmap, td->lut);
746 
747  ret = huf_uncompress(&gb, tmp, dsize / sizeof(uint16_t));
748  if (ret)
749  return ret;
750 
751  ptr = tmp;
752  for (i = 0; i < s->nb_channels; i++) {
753  EXRChannel *channel = &s->channels[i];
754  int size = channel->pixel_type;
755 
756  for (j = 0; j < size; j++)
757  wav_decode(ptr + j, s->xdelta, size, s->ysize,
758  s->xdelta * size, maxval);
759  ptr += s->xdelta * s->ysize * size;
760  }
761 
762  apply_lut(td->lut, tmp, dsize / sizeof(uint16_t));
763 
764  out = td->uncompressed_data;
765  for (i = 0; i < s->ysize; i++)
766  for (j = 0; j < s->nb_channels; j++) {
767  uint16_t *in = tmp + j * s->xdelta * s->ysize + i * s->xdelta;
768  memcpy(out, in, s->xdelta * 2);
769  out += s->xdelta * 2;
770  }
771 
772  return 0;
773 }
774 
776  int compressed_size, int uncompressed_size,
777  EXRThreadData *td)
778 {
779  unsigned long dest_len = uncompressed_size;
780  const uint8_t *in = td->tmp;
781  uint8_t *out;
782  int c, i, j;
783 
784  if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK ||
785  dest_len != uncompressed_size)
786  return AVERROR_INVALIDDATA;
787 
788  out = td->uncompressed_data;
789  for (i = 0; i < s->ysize; i++)
790  for (c = 0; c < s->nb_channels; c++) {
791  EXRChannel *channel = &s->channels[c];
792  const uint8_t *ptr[4];
793  uint32_t pixel = 0;
794 
795  switch (channel->pixel_type) {
796  case EXR_FLOAT:
797  ptr[0] = in;
798  ptr[1] = ptr[0] + s->xdelta;
799  ptr[2] = ptr[1] + s->xdelta;
800  in = ptr[2] + s->xdelta;
801 
802  for (j = 0; j < s->xdelta; ++j) {
803  uint32_t diff = (*(ptr[0]++) << 24) |
804  (*(ptr[1]++) << 16) |
805  (*(ptr[2]++) << 8);
806  pixel += diff;
807  bytestream_put_le32(&out, pixel);
808  }
809  break;
810  case EXR_HALF:
811  ptr[0] = in;
812  ptr[1] = ptr[0] + s->xdelta;
813  in = ptr[1] + s->xdelta;
814  for (j = 0; j < s->xdelta; j++) {
815  uint32_t diff = (*(ptr[0]++) << 8) | *(ptr[1]++);
816 
817  pixel += diff;
818  bytestream_put_le16(&out, pixel);
819  }
820  break;
821  default:
822  return AVERROR_INVALIDDATA;
823  }
824  }
825 
826  return 0;
827 }
828 
829 static int decode_block(AVCodecContext *avctx, void *tdata,
830  int jobnr, int threadnr)
831 {
832  EXRContext *s = avctx->priv_data;
833  AVFrame *const p = s->picture;
834  EXRThreadData *td = &s->thread_data[threadnr];
835  const uint8_t *channel_buffer[4] = { 0 };
836  const uint8_t *buf = s->buf;
837  uint64_t line_offset, uncompressed_size;
838  uint32_t xdelta = s->xdelta;
839  uint16_t *ptr_x;
840  uint8_t *ptr;
841  uint32_t data_size, line;
842  const uint8_t *src;
843  int axmax = (avctx->width - (s->xmax + 1)) * 2 * s->desc->nb_components;
844  int bxmin = s->xmin * 2 * s->desc->nb_components;
845  int i, x, buf_size = s->buf_size;
846  float one_gamma = 1.0f / s->gamma;
848  int ret;
849 
850  line_offset = AV_RL64(s->gb.buffer + jobnr * 8);
851  // Check if the buffer has the required bytes needed from the offset
852  if (line_offset > buf_size - 8)
853  return AVERROR_INVALIDDATA;
854 
855  src = buf + line_offset + 8;
856  line = AV_RL32(src - 8);
857  if (line < s->ymin || line > s->ymax)
858  return AVERROR_INVALIDDATA;
859 
860  data_size = AV_RL32(src - 4);
861  if (data_size <= 0 || data_size > buf_size)
862  return AVERROR_INVALIDDATA;
863 
864  s->ysize = FFMIN(s->scan_lines_per_block, s->ymax - line + 1);
865  uncompressed_size = s->scan_line_size * s->ysize;
866  if ((s->compression == EXR_RAW && (data_size != uncompressed_size ||
867  line_offset > buf_size - uncompressed_size)) ||
868  (s->compression != EXR_RAW && (data_size > uncompressed_size ||
869  line_offset > buf_size - data_size))) {
870  return AVERROR_INVALIDDATA;
871  }
872 
873  if (data_size < uncompressed_size) {
875  &td->uncompressed_size, uncompressed_size);
876  av_fast_padded_malloc(&td->tmp, &td->tmp_size, uncompressed_size);
877  if (!td->uncompressed_data || !td->tmp)
878  return AVERROR(ENOMEM);
879 
880  ret = AVERROR_INVALIDDATA;
881  switch (s->compression) {
882  case EXR_ZIP1:
883  case EXR_ZIP16:
884  ret = zip_uncompress(src, data_size, uncompressed_size, td);
885  break;
886  case EXR_PIZ:
887  ret = piz_uncompress(s, src, data_size, uncompressed_size, td);
888  break;
889  case EXR_PXR24:
890  ret = pxr24_uncompress(s, src, data_size, uncompressed_size, td);
891  break;
892  case EXR_RLE:
893  ret = rle_uncompress(src, data_size, uncompressed_size, td);
894  }
895  if (ret < 0) {
896  av_log(avctx, AV_LOG_ERROR, "decode_block() failed.\n");
897  return ret;
898  }
899  src = td->uncompressed_data;
900  }
901 
902  channel_buffer[0] = src + xdelta * s->channel_offsets[0];
903  channel_buffer[1] = src + xdelta * s->channel_offsets[1];
904  channel_buffer[2] = src + xdelta * s->channel_offsets[2];
905  if (s->channel_offsets[3] >= 0)
906  channel_buffer[3] = src + xdelta * s->channel_offsets[3];
907 
908  ptr = p->data[0] + line * p->linesize[0];
909  for (i = 0;
910  i < s->scan_lines_per_block && line + i <= s->ymax;
911  i++, ptr += p->linesize[0]) {
912  const uint8_t *r, *g, *b, *a;
913 
914  r = channel_buffer[0];
915  g = channel_buffer[1];
916  b = channel_buffer[2];
917  if (channel_buffer[3])
918  a = channel_buffer[3];
919 
920  ptr_x = (uint16_t *) ptr;
921 
922  // Zero out the start if xmin is not 0
923  memset(ptr_x, 0, bxmin);
924  ptr_x += s->xmin * s->desc->nb_components;
925  if (s->pixel_type == EXR_FLOAT) {
926  // 32-bit
927  if (trc_func) {
928  for (x = 0; x < xdelta; x++) {
929  union av_intfloat32 t;
930  t.i = bytestream_get_le32(&r);
931  t.f = trc_func(t.f);
932  *ptr_x++ = exr_flt2uint(t.i);
933 
934  t.i = bytestream_get_le32(&g);
935  t.f = trc_func(t.f);
936  *ptr_x++ = exr_flt2uint(t.i);
937 
938  t.i = bytestream_get_le32(&b);
939  t.f = trc_func(t.f);
940  *ptr_x++ = exr_flt2uint(t.i);
941  if (channel_buffer[3])
942  *ptr_x++ = exr_flt2uint(bytestream_get_le32(&a));
943  }
944  } else {
945  for (x = 0; x < xdelta; x++) {
946  union av_intfloat32 t;
947  t.i = bytestream_get_le32(&r);
948  if (t.f > 0.0f) /* avoid negative values */
949  t.f = powf(t.f, one_gamma);
950  *ptr_x++ = exr_flt2uint(t.i);
951 
952  t.i = bytestream_get_le32(&g);
953  if (t.f > 0.0f)
954  t.f = powf(t.f, one_gamma);
955  *ptr_x++ = exr_flt2uint(t.i);
956 
957  t.i = bytestream_get_le32(&b);
958  if (t.f > 0.0f)
959  t.f = powf(t.f, one_gamma);
960  *ptr_x++ = exr_flt2uint(t.i);
961  if (channel_buffer[3])
962  *ptr_x++ = exr_flt2uint(bytestream_get_le32(&a));
963  }
964  }
965  } else {
966  // 16-bit
967  for (x = 0; x < xdelta; x++) {
968  *ptr_x++ = s->gamma_table[bytestream_get_le16(&r)];
969  *ptr_x++ = s->gamma_table[bytestream_get_le16(&g)];
970  *ptr_x++ = s->gamma_table[bytestream_get_le16(&b)];
971  if (channel_buffer[3])
972  *ptr_x++ = exr_halflt2uint(bytestream_get_le16(&a));
973  }
974  }
975 
976  // Zero out the end if xmax+1 is not w
977  memset(ptr_x, 0, axmax);
978 
979  channel_buffer[0] += s->scan_line_size;
980  channel_buffer[1] += s->scan_line_size;
981  channel_buffer[2] += s->scan_line_size;
982  if (channel_buffer[3])
983  channel_buffer[3] += s->scan_line_size;
984  }
985 
986  return 0;
987 }
988 
989 /**
990  * Check if the variable name corresponds to its data type.
991  *
992  * @param s the EXRContext
993  * @param value_name name of the variable to check
994  * @param value_type type of the variable to check
995  * @param minimum_length minimum length of the variable data
996  *
997  * @return bytes to read containing variable data
998  * -1 if variable is not found
999  * 0 if buffer ended prematurely
1000  */
1002  const char *value_name,
1003  const char *value_type,
1004  unsigned int minimum_length)
1005 {
1006  int var_size = -1;
1007 
1008  if (bytestream2_get_bytes_left(&s->gb) >= minimum_length &&
1009  !strcmp(s->gb.buffer, value_name)) {
1010  // found value_name, jump to value_type (null terminated strings)
1011  s->gb.buffer += strlen(value_name) + 1;
1012  if (!strcmp(s->gb.buffer, value_type)) {
1013  s->gb.buffer += strlen(value_type) + 1;
1014  var_size = bytestream2_get_le32(&s->gb);
1015  // don't go read past boundaries
1016  if (var_size > bytestream2_get_bytes_left(&s->gb))
1017  var_size = 0;
1018  } else {
1019  // value_type not found, reset the buffer
1020  s->gb.buffer -= strlen(value_name) + 1;
1022  "Unknown data type %s for header variable %s.\n",
1023  value_type, value_name);
1024  }
1025  }
1026 
1027  return var_size;
1028 }
1029 
1031 {
1032  int current_channel_offset = 0;
1033  int magic_number, version, flags, i, sar = 0;
1034 
1035  s->xmin = ~0;
1036  s->xmax = ~0;
1037  s->ymin = ~0;
1038  s->ymax = ~0;
1039  s->xdelta = ~0;
1040  s->ydelta = ~0;
1041  s->channel_offsets[0] = -1;
1042  s->channel_offsets[1] = -1;
1043  s->channel_offsets[2] = -1;
1044  s->channel_offsets[3] = -1;
1045  s->pixel_type = EXR_UNKNOWN;
1046  s->compression = EXR_UNKN;
1047  s->nb_channels = 0;
1048  s->w = 0;
1049  s->h = 0;
1050 
1051  if (bytestream2_get_bytes_left(&s->gb) < 10) {
1052  av_log(s->avctx, AV_LOG_ERROR, "Header too short to parse.\n");
1053  return AVERROR_INVALIDDATA;
1054  }
1055 
1056  magic_number = bytestream2_get_le32(&s->gb);
1057  if (magic_number != 20000630) {
1058  /* As per documentation of OpenEXR, it is supposed to be
1059  * int 20000630 little-endian */
1060  av_log(s->avctx, AV_LOG_ERROR, "Wrong magic number %d.\n", magic_number);
1061  return AVERROR_INVALIDDATA;
1062  }
1063 
1064  version = bytestream2_get_byte(&s->gb);
1065  if (version != 2) {
1066  avpriv_report_missing_feature(s->avctx, "Version %d", version);
1067  return AVERROR_PATCHWELCOME;
1068  }
1069 
1070  flags = bytestream2_get_le24(&s->gb);
1071  if (flags & 0x02) {
1072  avpriv_report_missing_feature(s->avctx, "Tile support");
1073  return AVERROR_PATCHWELCOME;
1074  }
1075 
1076  // Parse the header
1077  while (bytestream2_get_bytes_left(&s->gb) > 0 && *s->gb.buffer) {
1078  int var_size;
1079  if ((var_size = check_header_variable(s, "channels",
1080  "chlist", 38)) >= 0) {
1081  GetByteContext ch_gb;
1082  if (!var_size)
1083  return AVERROR_INVALIDDATA;
1084 
1085  bytestream2_init(&ch_gb, s->gb.buffer, var_size);
1086 
1087  while (bytestream2_get_bytes_left(&ch_gb) >= 19) {
1088  EXRChannel *channel;
1089  enum ExrPixelType current_pixel_type;
1090  int channel_index = -1;
1091  int xsub, ysub;
1092 
1093  if (strcmp(s->layer, "") != 0) {
1094  if (strncmp(ch_gb.buffer, s->layer, strlen(s->layer)) == 0) {
1095  ch_gb.buffer += strlen(s->layer);
1096  if (*ch_gb.buffer == '.')
1097  ch_gb.buffer++; /* skip dot if not given */
1098  av_log(s->avctx, AV_LOG_INFO,
1099  "Layer %s.%s matched.\n", s->layer, ch_gb.buffer);
1100  }
1101  }
1102 
1103  if (!strcmp(ch_gb.buffer, "R") ||
1104  !strcmp(ch_gb.buffer, "X") ||
1105  !strcmp(ch_gb.buffer, "U"))
1106  channel_index = 0;
1107  else if (!strcmp(ch_gb.buffer, "G") ||
1108  !strcmp(ch_gb.buffer, "Y") ||
1109  !strcmp(ch_gb.buffer, "V"))
1110  channel_index = 1;
1111  else if (!strcmp(ch_gb.buffer, "B") ||
1112  !strcmp(ch_gb.buffer, "Z") ||
1113  !strcmp(ch_gb.buffer, "W"))
1114  channel_index = 2;
1115  else if (!strcmp(ch_gb.buffer, "A"))
1116  channel_index = 3;
1117  else
1119  "Unsupported channel %.256s.\n", ch_gb.buffer);
1120 
1121  /* skip until you get a 0 */
1122  while (bytestream2_get_bytes_left(&ch_gb) > 0 &&
1123  bytestream2_get_byte(&ch_gb))
1124  continue;
1125 
1126  if (bytestream2_get_bytes_left(&ch_gb) < 4) {
1127  av_log(s->avctx, AV_LOG_ERROR, "Incomplete header.\n");
1128  return AVERROR_INVALIDDATA;
1129  }
1130 
1131  current_pixel_type = bytestream2_get_le32(&ch_gb);
1132  if (current_pixel_type >= EXR_UNKNOWN) {
1133  avpriv_report_missing_feature(s->avctx, "Pixel type %d",
1134  current_pixel_type);
1135  return AVERROR_PATCHWELCOME;
1136  }
1137 
1138  bytestream2_skip(&ch_gb, 4);
1139  xsub = bytestream2_get_le32(&ch_gb);
1140  ysub = bytestream2_get_le32(&ch_gb);
1141  if (xsub != 1 || ysub != 1) {
1143  "Subsampling %dx%d",
1144  xsub, ysub);
1145  return AVERROR_PATCHWELCOME;
1146  }
1147 
1148  if (channel_index >= 0) {
1149  if (s->pixel_type != EXR_UNKNOWN &&
1150  s->pixel_type != current_pixel_type) {
1152  "RGB channels not of the same depth.\n");
1153  return AVERROR_INVALIDDATA;
1154  }
1155  s->pixel_type = current_pixel_type;
1156  s->channel_offsets[channel_index] = current_channel_offset;
1157  }
1158 
1159  s->channels = av_realloc(s->channels,
1160  ++s->nb_channels * sizeof(EXRChannel));
1161  if (!s->channels)
1162  return AVERROR(ENOMEM);
1163  channel = &s->channels[s->nb_channels - 1];
1164  channel->pixel_type = current_pixel_type;
1165  channel->xsub = xsub;
1166  channel->ysub = ysub;
1167 
1168  current_channel_offset += 1 << current_pixel_type;
1169  }
1170 
1171  /* Check if all channels are set with an offset or if the channels
1172  * are causing an overflow */
1173  if (FFMIN3(s->channel_offsets[0],
1174  s->channel_offsets[1],
1175  s->channel_offsets[2]) < 0) {
1176  if (s->channel_offsets[0] < 0)
1177  av_log(s->avctx, AV_LOG_ERROR, "Missing red channel.\n");
1178  if (s->channel_offsets[1] < 0)
1179  av_log(s->avctx, AV_LOG_ERROR, "Missing green channel.\n");
1180  if (s->channel_offsets[2] < 0)
1181  av_log(s->avctx, AV_LOG_ERROR, "Missing blue channel.\n");
1182  return AVERROR_INVALIDDATA;
1183  }
1184 
1185  // skip one last byte and update main gb
1186  s->gb.buffer = ch_gb.buffer + 1;
1187  continue;
1188  } else if ((var_size = check_header_variable(s, "dataWindow", "box2i",
1189  31)) >= 0) {
1190  if (!var_size)
1191  return AVERROR_INVALIDDATA;
1192 
1193  s->xmin = bytestream2_get_le32(&s->gb);
1194  s->ymin = bytestream2_get_le32(&s->gb);
1195  s->xmax = bytestream2_get_le32(&s->gb);
1196  s->ymax = bytestream2_get_le32(&s->gb);
1197  s->xdelta = (s->xmax - s->xmin) + 1;
1198  s->ydelta = (s->ymax - s->ymin) + 1;
1199 
1200  continue;
1201  } else if ((var_size = check_header_variable(s, "displayWindow",
1202  "box2i", 34)) >= 0) {
1203  if (!var_size)
1204  return AVERROR_INVALIDDATA;
1205 
1206  bytestream2_skip(&s->gb, 8);
1207  s->w = bytestream2_get_le32(&s->gb) + 1;
1208  s->h = bytestream2_get_le32(&s->gb) + 1;
1209 
1210  continue;
1211  } else if ((var_size = check_header_variable(s, "lineOrder",
1212  "lineOrder", 25)) >= 0) {
1213  int line_order;
1214  if (!var_size)
1215  return AVERROR_INVALIDDATA;
1216 
1217  line_order = bytestream2_get_byte(&s->gb);
1218  av_log(s->avctx, AV_LOG_DEBUG, "line order: %d.\n", line_order);
1219  if (line_order > 2) {
1220  av_log(s->avctx, AV_LOG_ERROR, "Unknown line order.\n");
1221  return AVERROR_INVALIDDATA;
1222  }
1223 
1224  continue;
1225  } else if ((var_size = check_header_variable(s, "pixelAspectRatio",
1226  "float", 31)) >= 0) {
1227  if (!var_size)
1228  return AVERROR_INVALIDDATA;
1229 
1230  sar = bytestream2_get_le32(&s->gb);
1231 
1232  continue;
1233  } else if ((var_size = check_header_variable(s, "compression",
1234  "compression", 29)) >= 0) {
1235  if (!var_size)
1236  return AVERROR_INVALIDDATA;
1237 
1238  if (s->compression == EXR_UNKN)
1239  s->compression = bytestream2_get_byte(&s->gb);
1240  else
1242  "Found more than one compression attribute.\n");
1243 
1244  continue;
1245  }
1246 
1247  // Check if there are enough bytes for a header
1248  if (bytestream2_get_bytes_left(&s->gb) <= 9) {
1249  av_log(s->avctx, AV_LOG_ERROR, "Incomplete header\n");
1250  return AVERROR_INVALIDDATA;
1251  }
1252 
1253  // Process unknown variables
1254  for (i = 0; i < 2; i++) // value_name and value_type
1255  while (bytestream2_get_byte(&s->gb) != 0);
1256 
1257  // Skip variable length
1258  bytestream2_skip(&s->gb, bytestream2_get_le32(&s->gb));
1259  }
1260 
1261  ff_set_sar(s->avctx, av_d2q(av_int2float(sar), 255));
1262 
1263  if (s->compression == EXR_UNKN) {
1264  av_log(s->avctx, AV_LOG_ERROR, "Missing compression attribute.\n");
1265  return AVERROR_INVALIDDATA;
1266  }
1267  s->scan_line_size = s->xdelta * current_channel_offset;
1268 
1269  if (bytestream2_get_bytes_left(&s->gb) <= 0) {
1270  av_log(s->avctx, AV_LOG_ERROR, "Incomplete frame.\n");
1271  return AVERROR_INVALIDDATA;
1272  }
1273 
1274  // aaand we are done
1275  bytestream2_skip(&s->gb, 1);
1276  return 0;
1277 }
1278 
1279 static int decode_frame(AVCodecContext *avctx, void *data,
1280  int *got_frame, AVPacket *avpkt)
1281 {
1282  EXRContext *s = avctx->priv_data;
1283  ThreadFrame frame = { .f = data };
1284  AVFrame *picture = data;
1285  uint8_t *ptr;
1286 
1287  int y, ret;
1288  int out_line_size;
1289  int scan_line_blocks;
1290 
1291  bytestream2_init(&s->gb, avpkt->data, avpkt->size);
1292 
1293  if ((ret = decode_header(s)) < 0)
1294  return ret;
1295 
1296  switch (s->pixel_type) {
1297  case EXR_FLOAT:
1298  case EXR_HALF:
1299  if (s->channel_offsets[3] >= 0)
1300  avctx->pix_fmt = AV_PIX_FMT_RGBA64;
1301  else
1302  avctx->pix_fmt = AV_PIX_FMT_RGB48;
1303  break;
1304  case EXR_UINT:
1305  avpriv_request_sample(avctx, "32-bit unsigned int");
1306  return AVERROR_PATCHWELCOME;
1307  default:
1308  av_log(avctx, AV_LOG_ERROR, "Missing channel list.\n");
1309  return AVERROR_INVALIDDATA;
1310  }
1311 
1313  avctx->color_trc = s->apply_trc_type;
1314 
1315  switch (s->compression) {
1316  case EXR_RAW:
1317  case EXR_RLE:
1318  case EXR_ZIP1:
1319  s->scan_lines_per_block = 1;
1320  break;
1321  case EXR_PXR24:
1322  case EXR_ZIP16:
1323  s->scan_lines_per_block = 16;
1324  break;
1325  case EXR_PIZ:
1326  s->scan_lines_per_block = 32;
1327  break;
1328  default:
1329  avpriv_report_missing_feature(avctx, "Compression %d", s->compression);
1330  return AVERROR_PATCHWELCOME;
1331  }
1332 
1333  /* Verify the xmin, xmax, ymin, ymax and xdelta before setting
1334  * the actual image size. */
1335  if (s->xmin > s->xmax ||
1336  s->ymin > s->ymax ||
1337  s->xdelta != s->xmax - s->xmin + 1 ||
1338  s->xmax >= s->w ||
1339  s->ymax >= s->h) {
1340  av_log(avctx, AV_LOG_ERROR, "Wrong or missing size information.\n");
1341  return AVERROR_INVALIDDATA;
1342  }
1343 
1344  if ((ret = ff_set_dimensions(avctx, s->w, s->h)) < 0)
1345  return ret;
1346 
1347  s->desc = av_pix_fmt_desc_get(avctx->pix_fmt);
1348  if (!s->desc)
1349  return AVERROR_INVALIDDATA;
1350  out_line_size = avctx->width * 2 * s->desc->nb_components;
1351  scan_line_blocks = (s->ydelta + s->scan_lines_per_block - 1) /
1353 
1354  if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
1355  return ret;
1356 
1357  if (bytestream2_get_bytes_left(&s->gb) < scan_line_blocks * 8)
1358  return AVERROR_INVALIDDATA;
1359 
1360  // save pointer we are going to use in decode_block
1361  s->buf = avpkt->data;
1362  s->buf_size = avpkt->size;
1363  ptr = picture->data[0];
1364 
1365  // Zero out the start if ymin is not 0
1366  for (y = 0; y < s->ymin; y++) {
1367  memset(ptr, 0, out_line_size);
1368  ptr += picture->linesize[0];
1369  }
1370 
1371  s->picture = picture;
1372  avctx->execute2(avctx, decode_block, s->thread_data, NULL, scan_line_blocks);
1373 
1374  // Zero out the end if ymax+1 is not h
1375  for (y = s->ymax + 1; y < avctx->height; y++) {
1376  memset(ptr, 0, out_line_size);
1377  ptr += picture->linesize[0];
1378  }
1379 
1380  picture->pict_type = AV_PICTURE_TYPE_I;
1381  *got_frame = 1;
1382 
1383  return avpkt->size;
1384 }
1385 
1387 {
1388  EXRContext *s = avctx->priv_data;
1389  uint32_t i;
1390  union av_intfloat32 t;
1391  float one_gamma = 1.0f / s->gamma;
1392  avpriv_trc_function trc_func = NULL;
1393 
1394  s->avctx = avctx;
1395 
1397  if (trc_func) {
1398  for (i = 0; i < 65536; ++i) {
1399  t = exr_half2float(i);
1400  t.f = trc_func(t.f);
1401  s->gamma_table[i] = exr_flt2uint(t.i);
1402  }
1403  } else {
1404  if (one_gamma > 0.9999f && one_gamma < 1.0001f) {
1405  for (i = 0; i < 65536; ++i)
1406  s->gamma_table[i] = exr_halflt2uint(i);
1407  } else {
1408  for (i = 0; i < 65536; ++i) {
1409  t = exr_half2float(i);
1410  /* If negative value we reuse half value */
1411  if (t.f <= 0.0f) {
1412  s->gamma_table[i] = exr_halflt2uint(i);
1413  } else {
1414  t.f = powf(t.f, one_gamma);
1415  s->gamma_table[i] = exr_flt2uint(t.i);
1416  }
1417  }
1418  }
1419  }
1420 
1421  // allocate thread data, used for non EXR_RAW compreesion types
1423  if (!s->thread_data)
1424  return AVERROR_INVALIDDATA;
1425 
1426  return 0;
1427 }
1428 
1429 #if HAVE_THREADS
1430 static int decode_init_thread_copy(AVCodecContext *avctx)
1431 { EXRContext *s = avctx->priv_data;
1432 
1433  // allocate thread data, used for non EXR_RAW compreesion types
1435  if (!s->thread_data)
1436  return AVERROR_INVALIDDATA;
1437 
1438  return 0;
1439 }
1440 #endif
1441 
1443 {
1444  EXRContext *s = avctx->priv_data;
1445  int i;
1446  for (i = 0; i < avctx->thread_count; i++) {
1447  EXRThreadData *td = &s->thread_data[i];
1449  av_freep(&td->tmp);
1450  av_freep(&td->bitmap);
1451  av_freep(&td->lut);
1452  }
1453 
1454  av_freep(&s->thread_data);
1455  av_freep(&s->channels);
1456 
1457  return 0;
1458 }
1459 
1460 #define OFFSET(x) offsetof(EXRContext, x)
1461 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
1462 static const AVOption options[] = {
1463  { "layer", "Set the decoding layer", OFFSET(layer),
1464  AV_OPT_TYPE_STRING, { .str = "" }, 0, 0, VD },
1465  { "gamma", "Set the float gamma value when decoding", OFFSET(gamma),
1466  AV_OPT_TYPE_FLOAT, { .dbl = 1.0f }, 0.001, FLT_MAX, VD },
1467 
1468  // XXX: Note the abuse of the enum using AVCOL_TRC_UNSPECIFIED to subsume the existing gamma option
1469  { "apply_trc", "color transfer characteristics to apply to EXR linear input", OFFSET(apply_trc_type),
1470  AV_OPT_TYPE_INT, {.i64 = AVCOL_TRC_UNSPECIFIED }, 1, AVCOL_TRC_NB-1, VD, "apply_trc_type"},
1471  { "bt709", "BT.709", 0,
1472  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT709 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1473  { "gamma", "gamma", 0,
1474  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_UNSPECIFIED }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1475  { "gamma22", "BT.470 M", 0,
1476  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_GAMMA22 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1477  { "gamma28", "BT.470 BG", 0,
1478  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_GAMMA28 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1479  { "smpte170m", "SMPTE 170 M", 0,
1480  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTE170M }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1481  { "smpte240m", "SMPTE 240 M", 0,
1482  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTE240M }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1483  { "linear", "Linear", 0,
1484  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_LINEAR }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1485  { "log", "Log", 0,
1486  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_LOG }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1487  { "log_sqrt", "Log square root", 0,
1488  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_LOG_SQRT }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1489  { "iec61966_2_4", "IEC 61966-2-4", 0,
1490  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_IEC61966_2_4 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1491  { "bt1361", "BT.1361", 0,
1492  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT1361_ECG }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1493  { "iec61966_2_1", "IEC 61966-2-1", 0,
1494  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_IEC61966_2_1 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1495  { "bt2020_10bit", "BT.2020 - 10 bit", 0,
1496  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT2020_10 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1497  { "bt2020_12bit", "BT.2020 - 12 bit", 0,
1498  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT2020_12 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1499  { "smpte2084", "SMPTE ST 2084", 0,
1500  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTEST2084 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1501  { "smpte428_1", "SMPTE ST 428-1", 0,
1502  AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTEST428_1 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1503 
1504  { NULL },
1505 };
1506 
1507 static const AVClass exr_class = {
1508  .class_name = "EXR",
1509  .item_name = av_default_item_name,
1510  .option = options,
1511  .version = LIBAVUTIL_VERSION_INT,
1512 };
1513 
1515  .name = "exr",
1516  .long_name = NULL_IF_CONFIG_SMALL("OpenEXR image"),
1517  .type = AVMEDIA_TYPE_VIDEO,
1518  .id = AV_CODEC_ID_EXR,
1519  .priv_data_size = sizeof(EXRContext),
1520  .init = decode_init,
1521  .init_thread_copy = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
1522  .close = decode_end,
1523  .decode = decode_frame,
1524  .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS |
1526  .priv_class = &exr_class,
1527 };
ITU-R BT2020 for 12 bit system.
Definition: pixfmt.h:411
static uint16_t exr_flt2uint(uint32_t v)
Convert from 32-bit float as uint32_t to uint16_t.
Definition: exr.c:189
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
IEC 61966-2-4.
Definition: pixfmt.h:407
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2157
This structure describes decoded (raw) audio or video data.
Definition: frame.h:181
AVOption.
Definition: opt.h:245
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
"Linear transfer characteristics"
Definition: pixfmt.h:404
Definition: exr.c:55
SMPTE ST 428-1.
Definition: pixfmt.h:413
static uint16_t reverse_lut(const uint8_t *bitmap, uint16_t *lut)
Definition: exr.c:317
double(* avpriv_trc_function)(double)
Definition: color_utils.h:40
misc image utilities
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static int init_thread_copy(AVCodecContext *avctx)
Definition: tta.c:390
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
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.
Definition: utils.c:209
const char * g
Definition: vf_curves.c:108
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
Definition: exr.c:50
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
Definition: intfloat.h:40
int channel_offsets[4]
Definition: exr.c:91
#define AV_PIX_FMT_RGBA64
Definition: pixfmt.h:320
int buf_size
Definition: exr.c:105
int * p
Definition: exr.c:350
uint32_t ymax
Definition: exr.c:96
static int pxr24_uncompress(EXRContext *s, const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
Definition: exr.c:775
const char * layer
Definition: exr.c:112
int size
Definition: avcodec.h:1468
const char * b
Definition: vf_curves.c:109
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1752
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:133
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...
Definition: utils.c:119
enum ExrPixelType pixel_type
Definition: exr.c:90
int version
Definition: avisynth_c.h:629
uint64_t_TMPL AV_RL64
Definition: bytestream.h:87
static int decode_block(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr)
Definition: exr.c:829
#define HALF_FLOAT_MAX_BIASED_EXP
Definition: exr.c:129
uint8_t * bitmap
Definition: exr.c:80
AVCodec.
Definition: avcodec.h:3392
uint8_t * tmp
Definition: exr.c:77
int w
Definition: exr.c:94
AVColorTransferCharacteristic
Color Transfer Characteristic.
Definition: pixfmt.h:395
int lit
Definition: exr.c:349
#define VD
Definition: exr.c:1461
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
const uint8_t * buf
Definition: exr.c:104
Definition: exr.c:347
float gamma
Definition: exr.c:115
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
uint8_t
#define av_cold
Definition: attributes.h:82
#define av_malloc(s)
static void wav_decode(uint16_t *in, int nx, int ox, int ny, int oy, uint16_t mx)
Definition: exr.c:633
AVOptions.
#define HUF_ENCSIZE
Definition: exr.c:343
#define get_code(po, rlc, c, lc, gb, out, oe, outb)
Definition: exr.c:464
Definition: exr.c:63
Multithreading support functions.
#define OFFSET(x)
Definition: exr.c:1460
also ITU-R BT470M / ITU-R BT1700 625 PAL & SECAM
Definition: pixfmt.h:400
static int huf_uncompress(GetByteContext *gb, uint16_t *dst, int dst_size)
Definition: exr.c:555
uint32_t xdelta
Definition: exr.c:97
static int huf_build_dec_table(const uint64_t *hcode, int im, int iM, HufDec *hdecod)
Definition: exr.c:421
static AVFrame * frame
#define get_char(c, lc, gb)
Definition: exr.c:458
Definition: exr.c:68
Definition: exr.c:52
uint8_t * data
Definition: avcodec.h:1467
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:212
const uint8_t * buffer
Definition: bytestream.h:34
#define FFMIN3(a, b, c)
Definition: common.h:97
static const AVOption options[]
Definition: exr.c:1462
int ff_set_sar(AVCodecContext *avctx, AVRational sar)
Check that the provided sample aspect ratio is valid and set it on the codec context.
Definition: utils.c:224
AVFrame * picture
Definition: exr.c:86
bitstream reader API header.
uint32_t ymin
Definition: exr.c:96
GetByteContext gb
Definition: exr.c:103
uint32_t ydelta
Definition: exr.c:97
ptrdiff_t size
Definition: opengl_enc.c:101
#define av_log(a,...)
uint8_t * uncompressed_data
Definition: exr.c:74
unsigned m
Definition: audioconvert.c:187
Definition: exr.c:57
#define A_OFFSET
Definition: exr.c:620
static int huf_decode(const uint64_t *hcode, const HufDec *hdecod, GetByteContext *gb, int nbits, int rlc, int no, uint16_t *out)
Definition: exr.c:487
static void predictor(uint8_t *src, int size)
Definition: exr.c:222
#define FLOAT_MAX_BIASED_EXP
Definition: exr.c:127
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define td
Definition: regdef.h:70
ITU-R BT1361 Extended Colour Gamut.
Definition: pixfmt.h:408
int h
Definition: exr.c:94
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
static av_cold int decode_init(AVCodecContext *avctx)
Definition: exr.c:1386
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:164
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
const char * r
Definition: vf_curves.c:107
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition: bytestream.h:263
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
AVCodecContext * avctx
Definition: exr.c:87
uint16_t gamma_table[65536]
Definition: exr.c:116
#define t1
Definition: regdef.h:29
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:154
static void reorder_pixels(uint8_t *src, uint8_t *dst, int size)
Definition: exr.c:234
Definition: graph2dot.c:48
#define AV_PIX_FMT_RGB48
Definition: pixfmt.h:316
enum AVColorTransferCharacteristic apply_trc_type
Definition: exr.c:114
enum ExrPixelType pixel_type
Definition: exr.c:70
int nb_channels
Definition: exr.c:108
const char * name
Name of the codec implementation.
Definition: avcodec.h:3399
#define LONG_ZEROCODE_RUN
Definition: exr.c:377
GLsizei count
Definition: opengl_enc.c:109
#define fail()
Definition: checkasm.h:80
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:919
int8_t exp
Definition: eval.c:63
AVCodec ff_exr_decoder
Definition: exr.c:1514
#define powf(x, y)
Definition: libm.h:50
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
Definition: internal.h:215
EXRThreadData * thread_data
Definition: exr.c:110
Definition: exr.c:56
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:83
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition: rational.c:106
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:252
#define HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP
Definition: exr.c:120
Definition: exr.c:54
int xsub
Definition: exr.c:69
#define FFMIN(a, b)
Definition: common.h:96
int len
Definition: exr.c:348
uint32_t xmin
Definition: exr.c:95
#define HUF_DECSIZE
Definition: exr.c:344
int width
picture width / height.
Definition: avcodec.h:1711
enum ExrCompr compression
Definition: exr.c:89
static uint16_t exr_halflt2uint(uint16_t v)
Convert from 16-bit float as uint16_t to uint16_t.
Definition: exr.c:209
int tmp_size
Definition: exr.c:78
int32_t
int ysize
Definition: exr.c:98
uint16_t * lut
Definition: exr.c:81
uint32_t i
Definition: intfloat.h:28
avpriv_trc_function avpriv_get_trc_function_from_trc(enum AVColorTransferCharacteristic trc)
Determine the function needed to apply the given AVColorTransferCharacteristic to linear input...
Definition: color_utils.c:157
Definition: exr.c:64
int n
Definition: avisynth_c.h:547
#define src
Definition: vp9dsp.c:530
EXRChannel * channels
Definition: exr.c:107
int uncompressed_size
Definition: exr.c:75
#define HUF_DECBITS
Definition: exr.c:341
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:2954
#define SHORTEST_LONG_RUN
Definition: exr.c:378
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.
Definition: exr.c:1001
FILE * out
Definition: movenc-test.c:54
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: avcodec.h:923
int ysub
Definition: exr.c:69
#define HUF_DECMASK
Definition: exr.c:345
also ITU-R BT1361
Definition: pixfmt.h:397
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
also ITU-R BT601-6 525 or 625 / ITU-R BT1358 525 or 625 / ITU-R BT1700 NTSC
Definition: pixfmt.h:402
Libavcodec external API header.
float im
Definition: fft-test.c:73
ExrCompr
Definition: exr.c:49
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:209
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:449
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
int ff_thread_get_buffer(AVCodecContext *avctx, ThreadFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
main external API structure.
Definition: avcodec.h:1532
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
void * buf
Definition: avisynth_c.h:553
#define BITMAP_SIZE
Definition: exr.c:315
static int zip_uncompress(const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
Definition: exr.c:254
BYTE int const BYTE int int int height
Definition: avisynth_c.h:676
Describe the class of an AVClass context structure.
Definition: log.h:67
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:2248
Definition: exr.c:53
Not part of ABI.
Definition: pixfmt.h:414
"Logarithmic transfer characteristic (100 * Sqrt(10) : 1 range)"
Definition: pixfmt.h:406
ExrPixelType
Definition: exr.c:61
Definition: exr.c:51
uint64_t scan_line_size
Definition: exr.c:100
static av_cold int decode_end(AVCodecContext *avctx)
Definition: exr.c:1442
uint8_t pixel
Definition: tiny_ssim.c:42
static int rle_uncompress(const uint8_t *src, int compressed_size, int uncompressed_size, EXRThreadData *td)
Definition: exr.c:269
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static int flags
Definition: cpu.c:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:192
#define SHORT_ZEROCODE_RUN
Definition: exr.c:376
int scan_lines_per_block
Definition: exr.c:101
static union av_intfloat32 exr_half2float(uint16_t hf)
Convert a half float as a uint16_t into a full float.
Definition: exr.c:138
uint32_t xmax
Definition: exr.c:95
IEC 61966-2-1 (sRGB or sYCC)
Definition: pixfmt.h:409
common internal api header.
if(ret< 0)
Definition: vf_mcdeint.c:282
Definition: exr.c:84
void * av_realloc(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:145
SMPTE ST 2084 for 10, 12, 14 and 16 bit systems.
Definition: pixfmt.h:412
static double c[64]
also ITU-R BT470BG
Definition: pixfmt.h:401
Definition: exr.c:62
#define MOD_MASK
Definition: exr.c:621
void * priv_data
Definition: avcodec.h:1574
static av_always_inline int diff(const uint32_t a, const uint32_t b)
#define av_free(p)
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.
Definition: avcodec.h:3014
static int piz_uncompress(EXRContext *s, const uint8_t *src, int ssize, int dsize, EXRThreadData *td)
Definition: exr.c:712
static void huf_canonical_code_table(uint64_t *hcode)
Definition: exr.c:353
ITU-R BT2020 for 10 bit system.
Definition: pixfmt.h:410
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:229
static void apply_lut(const uint16_t *lut, uint16_t *dst, int dsize)
Definition: exr.c:332
#define av_freep(p)
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: exr.c:1279
static void wdec14(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
Definition: exr.c:606
static int decode_header(EXRContext *s)
Definition: exr.c:1030
static void wdec16(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
Definition: exr.c:623
static int huf_unpack_enc_table(GetByteContext *gb, int32_t im, int32_t iM, uint64_t *hcode)
Definition: exr.c:381
const AVPixFmtDescriptor * desc
Definition: exr.c:92
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:87
This structure stores compressed data.
Definition: avcodec.h:1444
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:856
Definition: exr.c:58
static const AVClass exr_class
Definition: exr.c:1507
#define t2
Definition: regdef.h:30
#define USHORT_RANGE
Definition: exr.c:314
"Logarithmic transfer characteristic (100:1 range)"
Definition: pixfmt.h:405