]> git.sesse.net Git - ffmpeg/blob - libavcodec/exr.c
47f59bd638d7a9d383e5656d509379302b70cbd2
[ffmpeg] / libavcodec / exr.c
1 /*
2  * OpenEXR (.exr) image decoder
3  * Copyright (c) 2006 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC
4  * Copyright (c) 2009 Jimmy Christensen
5  *
6  * B44/B44A, Tile, UINT32 added by Jokyo Images support by CNC - French National Center for Cinema
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24
25 /**
26  * @file
27  * OpenEXR decoder
28  * @author Jimmy Christensen
29  *
30  * For more information on the OpenEXR format, visit:
31  *  http://openexr.com/
32  *
33  * exr_flt2uint() and exr_halflt2uint() is credited to Reimar Döffinger.
34  * exr_half2float() is credited to Aaftab Munshi, Dan Ginsburg, Dave Shreiner.
35  */
36
37 #include <float.h>
38 #include <zlib.h>
39
40 #include "libavutil/avassert.h"
41 #include "libavutil/common.h"
42 #include "libavutil/imgutils.h"
43 #include "libavutil/intfloat.h"
44 #include "libavutil/opt.h"
45 #include "libavutil/color_utils.h"
46
47 #include "avcodec.h"
48 #include "bytestream.h"
49
50 #if HAVE_BIGENDIAN
51 #include "bswapdsp.h"
52 #endif
53
54 #include "exrdsp.h"
55 #include "get_bits.h"
56 #include "internal.h"
57 #include "mathops.h"
58 #include "thread.h"
59
60 enum ExrCompr {
61     EXR_RAW,
62     EXR_RLE,
63     EXR_ZIP1,
64     EXR_ZIP16,
65     EXR_PIZ,
66     EXR_PXR24,
67     EXR_B44,
68     EXR_B44A,
69     EXR_DWA,
70     EXR_DWB,
71     EXR_UNKN,
72 };
73
74 enum ExrPixelType {
75     EXR_UINT,
76     EXR_HALF,
77     EXR_FLOAT,
78     EXR_UNKNOWN,
79 };
80
81 enum ExrTileLevelMode {
82     EXR_TILE_LEVEL_ONE,
83     EXR_TILE_LEVEL_MIPMAP,
84     EXR_TILE_LEVEL_RIPMAP,
85     EXR_TILE_LEVEL_UNKNOWN,
86 };
87
88 enum ExrTileLevelRound {
89     EXR_TILE_ROUND_UP,
90     EXR_TILE_ROUND_DOWN,
91     EXR_TILE_ROUND_UNKNOWN,
92 };
93
94 typedef struct EXRChannel {
95     int xsub, ysub;
96     enum ExrPixelType pixel_type;
97 } EXRChannel;
98
99 typedef struct EXRTileAttribute {
100     int32_t xSize;
101     int32_t ySize;
102     enum ExrTileLevelMode level_mode;
103     enum ExrTileLevelRound level_round;
104 } EXRTileAttribute;
105
106 typedef struct EXRThreadData {
107     uint8_t *uncompressed_data;
108     int uncompressed_size;
109
110     uint8_t *tmp;
111     int tmp_size;
112
113     uint8_t *bitmap;
114     uint16_t *lut;
115
116     int ysize, xsize;
117
118     int channel_line_size;
119 } EXRThreadData;
120
121 typedef struct EXRContext {
122     AVClass *class;
123     AVFrame *picture;
124     AVCodecContext *avctx;
125     ExrDSPContext dsp;
126
127 #if HAVE_BIGENDIAN
128     BswapDSPContext bbdsp;
129 #endif
130
131     enum ExrCompr compression;
132     enum ExrPixelType pixel_type;
133     int channel_offsets[4]; // 0 = red, 1 = green, 2 = blue and 3 = alpha
134     const AVPixFmtDescriptor *desc;
135
136     int w, h;
137     uint32_t xmax, xmin;
138     uint32_t ymax, ymin;
139     uint32_t xdelta, ydelta;
140
141     int scan_lines_per_block;
142
143     EXRTileAttribute tile_attr; /* header data attribute of tile */
144     int is_tile; /* 0 if scanline, 1 if tile */
145
146     int is_luma;/* 1 if there is an Y plane */
147
148     GetByteContext gb;
149     const uint8_t *buf;
150     int buf_size;
151
152     EXRChannel *channels;
153     int nb_channels;
154     int current_channel_offset;
155
156     EXRThreadData *thread_data;
157
158     const char *layer;
159
160     enum AVColorTransferCharacteristic apply_trc_type;
161     float gamma;
162     uint16_t gamma_table[65536];
163 } EXRContext;
164
165 /* -15 stored using a single precision bias of 127 */
166 #define HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP 0x38000000
167
168 /* max exponent value in single precision that will be converted
169  * to Inf or Nan when stored as a half-float */
170 #define HALF_FLOAT_MAX_BIASED_EXP_AS_SINGLE_FP_EXP 0x47800000
171
172 /* 255 is the max exponent biased value */
173 #define FLOAT_MAX_BIASED_EXP (0xFF << 23)
174
175 #define HALF_FLOAT_MAX_BIASED_EXP (0x1F << 10)
176
177 /**
178  * Convert a half float as a uint16_t into a full float.
179  *
180  * @param hf half float as uint16_t
181  *
182  * @return float value
183  */
184 static union av_intfloat32 exr_half2float(uint16_t hf)
185 {
186     unsigned int sign = (unsigned int) (hf >> 15);
187     unsigned int mantissa = (unsigned int) (hf & ((1 << 10) - 1));
188     unsigned int exp = (unsigned int) (hf & HALF_FLOAT_MAX_BIASED_EXP);
189     union av_intfloat32 f;
190
191     if (exp == HALF_FLOAT_MAX_BIASED_EXP) {
192         // we have a half-float NaN or Inf
193         // half-float NaNs will be converted to a single precision NaN
194         // half-float Infs will be converted to a single precision Inf
195         exp = FLOAT_MAX_BIASED_EXP;
196         if (mantissa)
197             mantissa = (1 << 23) - 1;    // set all bits to indicate a NaN
198     } else if (exp == 0x0) {
199         // convert half-float zero/denorm to single precision value
200         if (mantissa) {
201             mantissa <<= 1;
202             exp = HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP;
203             // check for leading 1 in denorm mantissa
204             while ((mantissa & (1 << 10))) {
205                 // for every leading 0, decrement single precision exponent by 1
206                 // and shift half-float mantissa value to the left
207                 mantissa <<= 1;
208                 exp -= (1 << 23);
209             }
210             // clamp the mantissa to 10 bits
211             mantissa &= ((1 << 10) - 1);
212             // shift left to generate single-precision mantissa of 23 bits
213             mantissa <<= 13;
214         }
215     } else {
216         // shift left to generate single-precision mantissa of 23 bits
217         mantissa <<= 13;
218         // generate single precision biased exponent value
219         exp = (exp << 13) + HALF_FLOAT_MIN_BIASED_EXP_AS_SINGLE_FP_EXP;
220     }
221
222     f.i = (sign << 31) | exp | mantissa;
223
224     return f;
225 }
226
227
228 /**
229  * Convert from 32-bit float as uint32_t to uint16_t.
230  *
231  * @param v 32-bit float
232  *
233  * @return normalized 16-bit unsigned int
234  */
235 static inline uint16_t exr_flt2uint(int32_t v)
236 {
237     int32_t exp = v >> 23;
238     // "HACK": negative values result in exp<  0, so clipping them to 0
239     // is also handled by this condition, avoids explicit check for sign bit.
240     if (exp <= 127 + 7 - 24) // we would shift out all bits anyway
241         return 0;
242     if (exp >= 127)
243         return 0xffff;
244     v &= 0x007fffff;
245     return (v + (1 << 23)) >> (127 + 7 - exp);
246 }
247
248 /**
249  * Convert from 16-bit float as uint16_t to uint16_t.
250  *
251  * @param v 16-bit float
252  *
253  * @return normalized 16-bit unsigned int
254  */
255 static inline uint16_t exr_halflt2uint(uint16_t v)
256 {
257     unsigned exp = 14 - (v >> 10);
258     if (exp >= 14) {
259         if (exp == 14)
260             return (v >> 9) & 1;
261         else
262             return (v & 0x8000) ? 0 : 0xffff;
263     }
264     v <<= 6;
265     return (v + (1 << 16)) >> (exp + 1);
266 }
267
268 static int zip_uncompress(EXRContext *s, const uint8_t *src, int compressed_size,
269                           int uncompressed_size, EXRThreadData *td)
270 {
271     unsigned long dest_len = uncompressed_size;
272
273     if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK ||
274         dest_len != uncompressed_size)
275         return AVERROR_INVALIDDATA;
276
277     av_assert1(uncompressed_size % 2 == 0);
278
279     s->dsp.predictor(td->tmp, uncompressed_size);
280     s->dsp.reorder_pixels(td->uncompressed_data, td->tmp, uncompressed_size);
281
282     return 0;
283 }
284
285 static int rle_uncompress(EXRContext *ctx, const uint8_t *src, int compressed_size,
286                           int uncompressed_size, EXRThreadData *td)
287 {
288     uint8_t *d      = td->tmp;
289     const int8_t *s = src;
290     int ssize       = compressed_size;
291     int dsize       = uncompressed_size;
292     uint8_t *dend   = d + dsize;
293     int count;
294
295     while (ssize > 0) {
296         count = *s++;
297
298         if (count < 0) {
299             count = -count;
300
301             if ((dsize -= count) < 0 ||
302                 (ssize -= count + 1) < 0)
303                 return AVERROR_INVALIDDATA;
304
305             while (count--)
306                 *d++ = *s++;
307         } else {
308             count++;
309
310             if ((dsize -= count) < 0 ||
311                 (ssize -= 2) < 0)
312                 return AVERROR_INVALIDDATA;
313
314             while (count--)
315                 *d++ = *s;
316
317             s++;
318         }
319     }
320
321     if (dend != d)
322         return AVERROR_INVALIDDATA;
323
324     av_assert1(uncompressed_size % 2 == 0);
325
326     ctx->dsp.predictor(td->tmp, uncompressed_size);
327     ctx->dsp.reorder_pixels(td->uncompressed_data, td->tmp, uncompressed_size);
328
329     return 0;
330 }
331
332 #define USHORT_RANGE (1 << 16)
333 #define BITMAP_SIZE  (1 << 13)
334
335 static uint16_t reverse_lut(const uint8_t *bitmap, uint16_t *lut)
336 {
337     int i, k = 0;
338
339     for (i = 0; i < USHORT_RANGE; i++)
340         if ((i == 0) || (bitmap[i >> 3] & (1 << (i & 7))))
341             lut[k++] = i;
342
343     i = k - 1;
344
345     memset(lut + k, 0, (USHORT_RANGE - k) * 2);
346
347     return i;
348 }
349
350 static void apply_lut(const uint16_t *lut, uint16_t *dst, int dsize)
351 {
352     int i;
353
354     for (i = 0; i < dsize; ++i)
355         dst[i] = lut[dst[i]];
356 }
357
358 #define HUF_ENCBITS 16  // literal (value) bit length
359 #define HUF_DECBITS 14  // decoding bit size (>= 8)
360
361 #define HUF_ENCSIZE ((1 << HUF_ENCBITS) + 1)  // encoding table size
362 #define HUF_DECSIZE (1 << HUF_DECBITS)        // decoding table size
363 #define HUF_DECMASK (HUF_DECSIZE - 1)
364
365 typedef struct HufDec {
366     int len;
367     int lit;
368     int *p;
369 } HufDec;
370
371 static void huf_canonical_code_table(uint64_t *hcode)
372 {
373     uint64_t c, n[59] = { 0 };
374     int i;
375
376     for (i = 0; i < HUF_ENCSIZE; ++i)
377         n[hcode[i]] += 1;
378
379     c = 0;
380     for (i = 58; i > 0; --i) {
381         uint64_t nc = ((c + n[i]) >> 1);
382         n[i] = c;
383         c    = nc;
384     }
385
386     for (i = 0; i < HUF_ENCSIZE; ++i) {
387         int l = hcode[i];
388
389         if (l > 0)
390             hcode[i] = l | (n[l]++ << 6);
391     }
392 }
393
394 #define SHORT_ZEROCODE_RUN  59
395 #define LONG_ZEROCODE_RUN   63
396 #define SHORTEST_LONG_RUN   (2 + LONG_ZEROCODE_RUN - SHORT_ZEROCODE_RUN)
397 #define LONGEST_LONG_RUN    (255 + SHORTEST_LONG_RUN)
398
399 static int huf_unpack_enc_table(GetByteContext *gb,
400                                 int32_t im, int32_t iM, uint64_t *hcode)
401 {
402     GetBitContext gbit;
403     int ret = init_get_bits8(&gbit, gb->buffer, bytestream2_get_bytes_left(gb));
404     if (ret < 0)
405         return ret;
406
407     for (; im <= iM; im++) {
408         uint64_t l = hcode[im] = get_bits(&gbit, 6);
409
410         if (l == LONG_ZEROCODE_RUN) {
411             int zerun = get_bits(&gbit, 8) + SHORTEST_LONG_RUN;
412
413             if (im + zerun > iM + 1)
414                 return AVERROR_INVALIDDATA;
415
416             while (zerun--)
417                 hcode[im++] = 0;
418
419             im--;
420         } else if (l >= SHORT_ZEROCODE_RUN) {
421             int zerun = l - SHORT_ZEROCODE_RUN + 2;
422
423             if (im + zerun > iM + 1)
424                 return AVERROR_INVALIDDATA;
425
426             while (zerun--)
427                 hcode[im++] = 0;
428
429             im--;
430         }
431     }
432
433     bytestream2_skip(gb, (get_bits_count(&gbit) + 7) / 8);
434     huf_canonical_code_table(hcode);
435
436     return 0;
437 }
438
439 static int huf_build_dec_table(const uint64_t *hcode, int im,
440                                int iM, HufDec *hdecod)
441 {
442     for (; im <= iM; im++) {
443         uint64_t c = hcode[im] >> 6;
444         int i, l = hcode[im] & 63;
445
446         if (c >> l)
447             return AVERROR_INVALIDDATA;
448
449         if (l > HUF_DECBITS) {
450             HufDec *pl = hdecod + (c >> (l - HUF_DECBITS));
451             if (pl->len)
452                 return AVERROR_INVALIDDATA;
453
454             pl->lit++;
455
456             pl->p = av_realloc(pl->p, pl->lit * sizeof(int));
457             if (!pl->p)
458                 return AVERROR(ENOMEM);
459
460             pl->p[pl->lit - 1] = im;
461         } else if (l) {
462             HufDec *pl = hdecod + (c << (HUF_DECBITS - l));
463
464             for (i = 1 << (HUF_DECBITS - l); i > 0; i--, pl++) {
465                 if (pl->len || pl->p)
466                     return AVERROR_INVALIDDATA;
467                 pl->len = l;
468                 pl->lit = im;
469             }
470         }
471     }
472
473     return 0;
474 }
475
476 #define get_char(c, lc, gb)                                                   \
477 {                                                                             \
478         c   = (c << 8) | bytestream2_get_byte(gb);                            \
479         lc += 8;                                                              \
480 }
481
482 #define get_code(po, rlc, c, lc, gb, out, oe, outb)                           \
483 {                                                                             \
484         if (po == rlc) {                                                      \
485             if (lc < 8)                                                       \
486                 get_char(c, lc, gb);                                          \
487             lc -= 8;                                                          \
488                                                                               \
489             cs = c >> lc;                                                     \
490                                                                               \
491             if (out + cs > oe || out == outb)                                 \
492                 return AVERROR_INVALIDDATA;                                   \
493                                                                               \
494             s = out[-1];                                                      \
495                                                                               \
496             while (cs-- > 0)                                                  \
497                 *out++ = s;                                                   \
498         } else if (out < oe) {                                                \
499             *out++ = po;                                                      \
500         } else {                                                              \
501             return AVERROR_INVALIDDATA;                                       \
502         }                                                                     \
503 }
504
505 static int huf_decode(const uint64_t *hcode, const HufDec *hdecod,
506                       GetByteContext *gb, int nbits,
507                       int rlc, int no, uint16_t *out)
508 {
509     uint64_t c        = 0;
510     uint16_t *outb    = out;
511     uint16_t *oe      = out + no;
512     const uint8_t *ie = gb->buffer + (nbits + 7) / 8; // input byte size
513     uint8_t cs;
514     uint16_t s;
515     int i, lc = 0;
516
517     while (gb->buffer < ie) {
518         get_char(c, lc, gb);
519
520         while (lc >= HUF_DECBITS) {
521             const HufDec pl = hdecod[(c >> (lc - HUF_DECBITS)) & HUF_DECMASK];
522
523             if (pl.len) {
524                 lc -= pl.len;
525                 get_code(pl.lit, rlc, c, lc, gb, out, oe, outb);
526             } else {
527                 int j;
528
529                 if (!pl.p)
530                     return AVERROR_INVALIDDATA;
531
532                 for (j = 0; j < pl.lit; j++) {
533                     int l = hcode[pl.p[j]] & 63;
534
535                     while (lc < l && bytestream2_get_bytes_left(gb) > 0)
536                         get_char(c, lc, gb);
537
538                     if (lc >= l) {
539                         if ((hcode[pl.p[j]] >> 6) ==
540                             ((c >> (lc - l)) & ((1LL << l) - 1))) {
541                             lc -= l;
542                             get_code(pl.p[j], rlc, c, lc, gb, out, oe, outb);
543                             break;
544                         }
545                     }
546                 }
547
548                 if (j == pl.lit)
549                     return AVERROR_INVALIDDATA;
550             }
551         }
552     }
553
554     i   = (8 - nbits) & 7;
555     c >>= i;
556     lc -= i;
557
558     while (lc > 0) {
559         const HufDec pl = hdecod[(c << (HUF_DECBITS - lc)) & HUF_DECMASK];
560
561         if (pl.len && lc >= pl.len) {
562             lc -= pl.len;
563             get_code(pl.lit, rlc, c, lc, gb, out, oe, outb);
564         } else {
565             return AVERROR_INVALIDDATA;
566         }
567     }
568
569     if (out - outb != no)
570         return AVERROR_INVALIDDATA;
571     return 0;
572 }
573
574 static int huf_uncompress(GetByteContext *gb,
575                           uint16_t *dst, int dst_size)
576 {
577     int32_t src_size, im, iM;
578     uint32_t nBits;
579     uint64_t *freq;
580     HufDec *hdec;
581     int ret, i;
582
583     src_size = bytestream2_get_le32(gb);
584     im       = bytestream2_get_le32(gb);
585     iM       = bytestream2_get_le32(gb);
586     bytestream2_skip(gb, 4);
587     nBits = bytestream2_get_le32(gb);
588     if (im < 0 || im >= HUF_ENCSIZE ||
589         iM < 0 || iM >= HUF_ENCSIZE ||
590         src_size < 0)
591         return AVERROR_INVALIDDATA;
592
593     bytestream2_skip(gb, 4);
594
595     freq = av_mallocz_array(HUF_ENCSIZE, sizeof(*freq));
596     hdec = av_mallocz_array(HUF_DECSIZE, sizeof(*hdec));
597     if (!freq || !hdec) {
598         ret = AVERROR(ENOMEM);
599         goto fail;
600     }
601
602     if ((ret = huf_unpack_enc_table(gb, im, iM, freq)) < 0)
603         goto fail;
604
605     if (nBits > 8 * bytestream2_get_bytes_left(gb)) {
606         ret = AVERROR_INVALIDDATA;
607         goto fail;
608     }
609
610     if ((ret = huf_build_dec_table(freq, im, iM, hdec)) < 0)
611         goto fail;
612     ret = huf_decode(freq, hdec, gb, nBits, iM, dst_size, dst);
613
614 fail:
615     for (i = 0; i < HUF_DECSIZE; i++)
616         if (hdec)
617             av_freep(&hdec[i].p);
618
619     av_free(freq);
620     av_free(hdec);
621
622     return ret;
623 }
624
625 static inline void wdec14(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
626 {
627     int16_t ls = l;
628     int16_t hs = h;
629     int hi     = hs;
630     int ai     = ls + (hi & 1) + (hi >> 1);
631     int16_t as = ai;
632     int16_t bs = ai - hi;
633
634     *a = as;
635     *b = bs;
636 }
637
638 #define NBITS      16
639 #define A_OFFSET  (1 << (NBITS - 1))
640 #define MOD_MASK  ((1 << NBITS) - 1)
641
642 static inline void wdec16(uint16_t l, uint16_t h, uint16_t *a, uint16_t *b)
643 {
644     int m  = l;
645     int d  = h;
646     int bb = (m - (d >> 1)) & MOD_MASK;
647     int aa = (d + bb - A_OFFSET) & MOD_MASK;
648     *b = bb;
649     *a = aa;
650 }
651
652 static void wav_decode(uint16_t *in, int nx, int ox,
653                        int ny, int oy, uint16_t mx)
654 {
655     int w14 = (mx < (1 << 14));
656     int n   = (nx > ny) ? ny : nx;
657     int p   = 1;
658     int p2;
659
660     while (p <= n)
661         p <<= 1;
662
663     p >>= 1;
664     p2  = p;
665     p >>= 1;
666
667     while (p >= 1) {
668         uint16_t *py = in;
669         uint16_t *ey = in + oy * (ny - p2);
670         uint16_t i00, i01, i10, i11;
671         int oy1 = oy * p;
672         int oy2 = oy * p2;
673         int ox1 = ox * p;
674         int ox2 = ox * p2;
675
676         for (; py <= ey; py += oy2) {
677             uint16_t *px = py;
678             uint16_t *ex = py + ox * (nx - p2);
679
680             for (; px <= ex; px += ox2) {
681                 uint16_t *p01 = px + ox1;
682                 uint16_t *p10 = px + oy1;
683                 uint16_t *p11 = p10 + ox1;
684
685                 if (w14) {
686                     wdec14(*px, *p10, &i00, &i10);
687                     wdec14(*p01, *p11, &i01, &i11);
688                     wdec14(i00, i01, px, p01);
689                     wdec14(i10, i11, p10, p11);
690                 } else {
691                     wdec16(*px, *p10, &i00, &i10);
692                     wdec16(*p01, *p11, &i01, &i11);
693                     wdec16(i00, i01, px, p01);
694                     wdec16(i10, i11, p10, p11);
695                 }
696             }
697
698             if (nx & p) {
699                 uint16_t *p10 = px + oy1;
700
701                 if (w14)
702                     wdec14(*px, *p10, &i00, p10);
703                 else
704                     wdec16(*px, *p10, &i00, p10);
705
706                 *px = i00;
707             }
708         }
709
710         if (ny & p) {
711             uint16_t *px = py;
712             uint16_t *ex = py + ox * (nx - p2);
713
714             for (; px <= ex; px += ox2) {
715                 uint16_t *p01 = px + ox1;
716
717                 if (w14)
718                     wdec14(*px, *p01, &i00, p01);
719                 else
720                     wdec16(*px, *p01, &i00, p01);
721
722                 *px = i00;
723             }
724         }
725
726         p2  = p;
727         p >>= 1;
728     }
729 }
730
731 static int piz_uncompress(EXRContext *s, const uint8_t *src, int ssize,
732                           int dsize, EXRThreadData *td)
733 {
734     GetByteContext gb;
735     uint16_t maxval, min_non_zero, max_non_zero;
736     uint16_t *ptr;
737     uint16_t *tmp = (uint16_t *)td->tmp;
738     uint16_t *out;
739     uint16_t *in;
740     int ret, i, j;
741     int pixel_half_size;/* 1 for half, 2 for float and uint32 */
742     EXRChannel *channel;
743     int tmp_offset;
744
745     if (!td->bitmap)
746         td->bitmap = av_malloc(BITMAP_SIZE);
747     if (!td->lut)
748         td->lut = av_malloc(1 << 17);
749     if (!td->bitmap || !td->lut) {
750         av_freep(&td->bitmap);
751         av_freep(&td->lut);
752         return AVERROR(ENOMEM);
753     }
754
755     bytestream2_init(&gb, src, ssize);
756     min_non_zero = bytestream2_get_le16(&gb);
757     max_non_zero = bytestream2_get_le16(&gb);
758
759     if (max_non_zero >= BITMAP_SIZE)
760         return AVERROR_INVALIDDATA;
761
762     memset(td->bitmap, 0, FFMIN(min_non_zero, BITMAP_SIZE));
763     if (min_non_zero <= max_non_zero)
764         bytestream2_get_buffer(&gb, td->bitmap + min_non_zero,
765                                max_non_zero - min_non_zero + 1);
766     memset(td->bitmap + max_non_zero + 1, 0, BITMAP_SIZE - max_non_zero - 1);
767
768     maxval = reverse_lut(td->bitmap, td->lut);
769
770     ret = huf_uncompress(&gb, tmp, dsize / sizeof(uint16_t));
771     if (ret)
772         return ret;
773
774     ptr = tmp;
775     for (i = 0; i < s->nb_channels; i++) {
776         channel = &s->channels[i];
777
778         if (channel->pixel_type == EXR_HALF)
779             pixel_half_size = 1;
780         else
781             pixel_half_size = 2;
782
783         for (j = 0; j < pixel_half_size; j++)
784             wav_decode(ptr + j, td->xsize, pixel_half_size, td->ysize,
785                        td->xsize * pixel_half_size, maxval);
786         ptr += td->xsize * td->ysize * pixel_half_size;
787     }
788
789     apply_lut(td->lut, tmp, dsize / sizeof(uint16_t));
790
791     out = (uint16_t *)td->uncompressed_data;
792     for (i = 0; i < td->ysize; i++) {
793         tmp_offset = 0;
794         for (j = 0; j < s->nb_channels; j++) {
795             channel = &s->channels[j];
796             if (channel->pixel_type == EXR_HALF)
797                 pixel_half_size = 1;
798             else
799                 pixel_half_size = 2;
800
801             in = tmp + tmp_offset * td->xsize * td->ysize + i * td->xsize * pixel_half_size;
802             tmp_offset += pixel_half_size;
803
804 #if HAVE_BIGENDIAN
805             s->bbdsp.bswap16_buf(out, in, td->xsize * pixel_half_size);
806 #else
807             memcpy(out, in, td->xsize * 2 * pixel_half_size);
808 #endif
809             out += td->xsize * pixel_half_size;
810         }
811     }
812
813     return 0;
814 }
815
816 static int pxr24_uncompress(EXRContext *s, const uint8_t *src,
817                             int compressed_size, int uncompressed_size,
818                             EXRThreadData *td)
819 {
820     unsigned long dest_len, expected_len = 0;
821     const uint8_t *in = td->tmp;
822     uint8_t *out;
823     int c, i, j;
824
825     for (i = 0; i < s->nb_channels; i++) {
826         if (s->channels[i].pixel_type == EXR_FLOAT) {
827             expected_len += (td->xsize * td->ysize * 3);/* PRX 24 store float in 24 bit instead of 32 */
828         } else if (s->channels[i].pixel_type == EXR_HALF) {
829             expected_len += (td->xsize * td->ysize * 2);
830         } else {//UINT 32
831             expected_len += (td->xsize * td->ysize * 4);
832         }
833     }
834
835     dest_len = expected_len;
836
837     if (uncompress(td->tmp, &dest_len, src, compressed_size) != Z_OK) {
838         return AVERROR_INVALIDDATA;
839     } else if (dest_len != expected_len) {
840         return AVERROR_INVALIDDATA;
841     }
842
843     out = td->uncompressed_data;
844     for (i = 0; i < td->ysize; i++)
845         for (c = 0; c < s->nb_channels; c++) {
846             EXRChannel *channel = &s->channels[c];
847             const uint8_t *ptr[4];
848             uint32_t pixel = 0;
849
850             switch (channel->pixel_type) {
851             case EXR_FLOAT:
852                 ptr[0] = in;
853                 ptr[1] = ptr[0] + td->xsize;
854                 ptr[2] = ptr[1] + td->xsize;
855                 in     = ptr[2] + td->xsize;
856
857                 for (j = 0; j < td->xsize; ++j) {
858                     uint32_t diff = ((unsigned)*(ptr[0]++) << 24) |
859                                     (*(ptr[1]++) << 16) |
860                                     (*(ptr[2]++) << 8);
861                     pixel += diff;
862                     bytestream_put_le32(&out, pixel);
863                 }
864                 break;
865             case EXR_HALF:
866                 ptr[0] = in;
867                 ptr[1] = ptr[0] + td->xsize;
868                 in     = ptr[1] + td->xsize;
869                 for (j = 0; j < td->xsize; j++) {
870                     uint32_t diff = (*(ptr[0]++) << 8) | *(ptr[1]++);
871
872                     pixel += diff;
873                     bytestream_put_le16(&out, pixel);
874                 }
875                 break;
876             case EXR_UINT:
877                 ptr[0] = in;
878                 ptr[1] = ptr[0] + s->xdelta;
879                 ptr[2] = ptr[1] + s->xdelta;
880                 ptr[3] = ptr[2] + s->xdelta;
881                 in     = ptr[3] + s->xdelta;
882
883                 for (j = 0; j < s->xdelta; ++j) {
884                     uint32_t diff = (*(ptr[0]++) << 24) |
885                     (*(ptr[1]++) << 16) |
886                     (*(ptr[2]++) << 8 ) |
887                     (*(ptr[3]++));
888                     pixel += diff;
889                     bytestream_put_le32(&out, pixel);
890                 }
891                 break;
892             default:
893                 return AVERROR_INVALIDDATA;
894             }
895         }
896
897     return 0;
898 }
899
900 static void unpack_14(const uint8_t b[14], uint16_t s[16])
901 {
902     unsigned short shift = (b[ 2] >> 2);
903     unsigned short bias = (0x20 << shift);
904     int i;
905
906     s[ 0] = (b[0] << 8) | b[1];
907
908     s[ 4] = s[ 0] + ((((b[ 2] << 4) | (b[ 3] >> 4)) & 0x3f) << shift) - bias;
909     s[ 8] = s[ 4] + ((((b[ 3] << 2) | (b[ 4] >> 6)) & 0x3f) << shift) - bias;
910     s[12] = s[ 8] +   ((b[ 4]                       & 0x3f) << shift) - bias;
911
912     s[ 1] = s[ 0] +   ((b[ 5] >> 2)                         << shift) - bias;
913     s[ 5] = s[ 4] + ((((b[ 5] << 4) | (b[ 6] >> 4)) & 0x3f) << shift) - bias;
914     s[ 9] = s[ 8] + ((((b[ 6] << 2) | (b[ 7] >> 6)) & 0x3f) << shift) - bias;
915     s[13] = s[12] +   ((b[ 7]                       & 0x3f) << shift) - bias;
916
917     s[ 2] = s[ 1] +   ((b[ 8] >> 2)                         << shift) - bias;
918     s[ 6] = s[ 5] + ((((b[ 8] << 4) | (b[ 9] >> 4)) & 0x3f) << shift) - bias;
919     s[10] = s[ 9] + ((((b[ 9] << 2) | (b[10] >> 6)) & 0x3f) << shift) - bias;
920     s[14] = s[13] +   ((b[10]                       & 0x3f) << shift) - bias;
921
922     s[ 3] = s[ 2] +   ((b[11] >> 2)                         << shift) - bias;
923     s[ 7] = s[ 6] + ((((b[11] << 4) | (b[12] >> 4)) & 0x3f) << shift) - bias;
924     s[11] = s[10] + ((((b[12] << 2) | (b[13] >> 6)) & 0x3f) << shift) - bias;
925     s[15] = s[14] +   ((b[13]                       & 0x3f) << shift) - bias;
926
927     for (i = 0; i < 16; ++i) {
928         if (s[i] & 0x8000)
929             s[i] &= 0x7fff;
930         else
931             s[i] = ~s[i];
932     }
933 }
934
935 static void unpack_3(const uint8_t b[3], uint16_t s[16])
936 {
937     int i;
938
939     s[0] = (b[0] << 8) | b[1];
940
941     if (s[0] & 0x8000)
942         s[0] &= 0x7fff;
943     else
944         s[0] = ~s[0];
945
946     for (i = 1; i < 16; i++)
947         s[i] = s[0];
948 }
949
950
951 static int b44_uncompress(EXRContext *s, const uint8_t *src, int compressed_size,
952                           int uncompressed_size, EXRThreadData *td) {
953     const int8_t *sr = src;
954     int stay_to_uncompress = compressed_size;
955     int nb_b44_block_w, nb_b44_block_h;
956     int index_tl_x, index_tl_y, index_out, index_tmp;
957     uint16_t tmp_buffer[16]; /* B44 use 4x4 half float pixel */
958     int c, iY, iX, y, x;
959     int target_channel_offset = 0;
960
961     /* calc B44 block count */
962     nb_b44_block_w = td->xsize / 4;
963     if ((td->xsize % 4) != 0)
964         nb_b44_block_w++;
965
966     nb_b44_block_h = td->ysize / 4;
967     if ((td->ysize % 4) != 0)
968         nb_b44_block_h++;
969
970     for (c = 0; c < s->nb_channels; c++) {
971         if (s->channels[c].pixel_type == EXR_HALF) {/* B44 only compress half float data */
972             for (iY = 0; iY < nb_b44_block_h; iY++) {
973                 for (iX = 0; iX < nb_b44_block_w; iX++) {/* For each B44 block */
974                     if (stay_to_uncompress < 3) {
975                         av_log(s, AV_LOG_ERROR, "Not enough data for B44A block: %d", stay_to_uncompress);
976                         return AVERROR_INVALIDDATA;
977                     }
978
979                     if (src[compressed_size - stay_to_uncompress + 2] == 0xfc) { /* B44A block */
980                         unpack_3(sr, tmp_buffer);
981                         sr += 3;
982                         stay_to_uncompress -= 3;
983                     }  else {/* B44 Block */
984                         if (stay_to_uncompress < 14) {
985                             av_log(s, AV_LOG_ERROR, "Not enough data for B44 block: %d", stay_to_uncompress);
986                             return AVERROR_INVALIDDATA;
987                         }
988                         unpack_14(sr, tmp_buffer);
989                         sr += 14;
990                         stay_to_uncompress -= 14;
991                     }
992
993                     /* copy data to uncompress buffer (B44 block can exceed target resolution)*/
994                     index_tl_x = iX * 4;
995                     index_tl_y = iY * 4;
996
997                     for (y = index_tl_y; y < FFMIN(index_tl_y + 4, td->ysize); y++) {
998                         for (x = index_tl_x; x < FFMIN(index_tl_x + 4, td->xsize); x++) {
999                             index_out = target_channel_offset * td->xsize + y * td->channel_line_size + 2 * x;
1000                             index_tmp = (y-index_tl_y) * 4 + (x-index_tl_x);
1001                             td->uncompressed_data[index_out] = tmp_buffer[index_tmp] & 0xff;
1002                             td->uncompressed_data[index_out + 1] = tmp_buffer[index_tmp] >> 8;
1003                         }
1004                     }
1005                 }
1006             }
1007             target_channel_offset += 2;
1008         } else {/* Float or UINT 32 channel */
1009             if (stay_to_uncompress < td->ysize * td->xsize * 4) {
1010                 av_log(s, AV_LOG_ERROR, "Not enough data for uncompress channel: %d", stay_to_uncompress);
1011                 return AVERROR_INVALIDDATA;
1012             }
1013
1014             for (y = 0; y < td->ysize; y++) {
1015                 index_out = target_channel_offset * td->xsize + y * td->channel_line_size;
1016                 memcpy(&td->uncompressed_data[index_out], sr, td->xsize * 4);
1017                 sr += td->xsize * 4;
1018             }
1019             target_channel_offset += 4;
1020
1021             stay_to_uncompress -= td->ysize * td->xsize * 4;
1022         }
1023     }
1024
1025     return 0;
1026 }
1027
1028 static int decode_block(AVCodecContext *avctx, void *tdata,
1029                         int jobnr, int threadnr)
1030 {
1031     EXRContext *s = avctx->priv_data;
1032     AVFrame *const p = s->picture;
1033     EXRThreadData *td = &s->thread_data[threadnr];
1034     const uint8_t *channel_buffer[4] = { 0 };
1035     const uint8_t *buf = s->buf;
1036     uint64_t line_offset, uncompressed_size;
1037     uint16_t *ptr_x;
1038     uint8_t *ptr;
1039     uint32_t data_size;
1040     uint64_t line, col = 0;
1041     uint64_t tile_x, tile_y, tile_level_x, tile_level_y;
1042     const uint8_t *src;
1043     int axmax = (avctx->width - (s->xmax + 1)) * 2 * s->desc->nb_components; /* nb pixel to add at the right of the datawindow */
1044     int bxmin = s->xmin * 2 * s->desc->nb_components; /* nb pixel to add at the left of the datawindow */
1045     int i, x, buf_size = s->buf_size;
1046     int c, rgb_channel_count;
1047     float one_gamma = 1.0f / s->gamma;
1048     avpriv_trc_function trc_func = avpriv_get_trc_function_from_trc(s->apply_trc_type);
1049     int ret;
1050
1051     line_offset = AV_RL64(s->gb.buffer + jobnr * 8);
1052
1053     if (s->is_tile) {
1054         if (buf_size < 20 || line_offset > buf_size - 20)
1055             return AVERROR_INVALIDDATA;
1056
1057         src  = buf + line_offset + 20;
1058
1059         tile_x = AV_RL32(src - 20);
1060         tile_y = AV_RL32(src - 16);
1061         tile_level_x = AV_RL32(src - 12);
1062         tile_level_y = AV_RL32(src - 8);
1063
1064         data_size = AV_RL32(src - 4);
1065         if (data_size <= 0 || data_size > buf_size - line_offset - 20)
1066             return AVERROR_INVALIDDATA;
1067
1068         if (tile_level_x || tile_level_y) { /* tile level, is not the full res level */
1069             avpriv_report_missing_feature(s->avctx, "Subres tile before full res tile");
1070             return AVERROR_PATCHWELCOME;
1071         }
1072
1073         if (s->xmin || s->ymin) {
1074             avpriv_report_missing_feature(s->avctx, "Tiles with xmin/ymin");
1075             return AVERROR_PATCHWELCOME;
1076         }
1077
1078         line = s->tile_attr.ySize * tile_y;
1079         col = s->tile_attr.xSize * tile_x;
1080
1081         if (line < s->ymin || line > s->ymax ||
1082             col  < s->xmin || col  > s->xmax)
1083             return AVERROR_INVALIDDATA;
1084
1085         td->ysize = FFMIN(s->tile_attr.ySize, s->ydelta - tile_y * s->tile_attr.ySize);
1086         td->xsize = FFMIN(s->tile_attr.xSize, s->xdelta - tile_x * s->tile_attr.xSize);
1087
1088         if (col) { /* not the first tile of the line */
1089             bxmin = 0; /* doesn't add pixel at the left of the datawindow */
1090         }
1091
1092         if ((col + td->xsize) != s->xdelta)/* not the last tile of the line */
1093             axmax = 0; /* doesn't add pixel at the right of the datawindow */
1094
1095         td->channel_line_size = td->xsize * s->current_channel_offset;/* uncompress size of one line */
1096         uncompressed_size = td->channel_line_size * (uint64_t)td->ysize;/* uncompress size of the block */
1097     } else {
1098         if (buf_size < 8 || line_offset > buf_size - 8)
1099             return AVERROR_INVALIDDATA;
1100
1101         src  = buf + line_offset + 8;
1102         line = AV_RL32(src - 8);
1103
1104         if (line < s->ymin || line > s->ymax)
1105             return AVERROR_INVALIDDATA;
1106
1107         data_size = AV_RL32(src - 4);
1108         if (data_size <= 0 || data_size > buf_size - line_offset - 8)
1109             return AVERROR_INVALIDDATA;
1110
1111         td->ysize          = FFMIN(s->scan_lines_per_block, s->ymax - line + 1); /* s->ydelta - line ?? */
1112         td->xsize          = s->xdelta;
1113
1114         td->channel_line_size = td->xsize * s->current_channel_offset;/* uncompress size of one line */
1115         uncompressed_size = td->channel_line_size * (uint64_t)td->ysize;/* uncompress size of the block */
1116
1117         if ((s->compression == EXR_RAW && (data_size != uncompressed_size ||
1118                                            line_offset > buf_size - uncompressed_size)) ||
1119             (s->compression != EXR_RAW && (data_size > uncompressed_size ||
1120                                            line_offset > buf_size - data_size))) {
1121             return AVERROR_INVALIDDATA;
1122         }
1123     }
1124
1125     if (data_size < uncompressed_size || s->is_tile) { /* td->tmp is use for tile reorganization */
1126         av_fast_padded_malloc(&td->tmp, &td->tmp_size, uncompressed_size);
1127         if (!td->tmp)
1128             return AVERROR(ENOMEM);
1129     }
1130
1131     if (data_size < uncompressed_size) {
1132         av_fast_padded_malloc(&td->uncompressed_data,
1133                               &td->uncompressed_size, uncompressed_size + 64);/* Force 64 padding for AVX2 reorder_pixels dst */
1134
1135         if (!td->uncompressed_data)
1136             return AVERROR(ENOMEM);
1137
1138         ret = AVERROR_INVALIDDATA;
1139         switch (s->compression) {
1140         case EXR_ZIP1:
1141         case EXR_ZIP16:
1142             ret = zip_uncompress(s, src, data_size, uncompressed_size, td);
1143             break;
1144         case EXR_PIZ:
1145             ret = piz_uncompress(s, src, data_size, uncompressed_size, td);
1146             break;
1147         case EXR_PXR24:
1148             ret = pxr24_uncompress(s, src, data_size, uncompressed_size, td);
1149             break;
1150         case EXR_RLE:
1151             ret = rle_uncompress(s, src, data_size, uncompressed_size, td);
1152             break;
1153         case EXR_B44:
1154         case EXR_B44A:
1155             ret = b44_uncompress(s, src, data_size, uncompressed_size, td);
1156             break;
1157         }
1158         if (ret < 0) {
1159             av_log(avctx, AV_LOG_ERROR, "decode_block() failed.\n");
1160             return ret;
1161         }
1162         src = td->uncompressed_data;
1163     }
1164
1165     if (!s->is_luma) {
1166         channel_buffer[0] = src + td->xsize * s->channel_offsets[0];
1167         channel_buffer[1] = src + td->xsize * s->channel_offsets[1];
1168         channel_buffer[2] = src + td->xsize * s->channel_offsets[2];
1169         rgb_channel_count = 3;
1170     } else { /* put y data in the first channel_buffer */
1171         channel_buffer[0] = src + td->xsize * s->channel_offsets[1];
1172         rgb_channel_count = 1;
1173     }
1174     if (s->channel_offsets[3] >= 0)
1175         channel_buffer[3] = src + td->xsize * s->channel_offsets[3];
1176
1177     ptr = p->data[0] + line * p->linesize[0] + (col * s->desc->nb_components * 2);
1178
1179     for (i = 0;
1180          i < td->ysize; i++, ptr += p->linesize[0]) {
1181
1182         const uint8_t * a;
1183         const uint8_t *rgb[3];
1184
1185         for (c = 0; c < rgb_channel_count; c++){
1186             rgb[c] = channel_buffer[c];
1187         }
1188
1189         if (channel_buffer[3])
1190             a = channel_buffer[3];
1191
1192         ptr_x = (uint16_t *) ptr;
1193
1194         // Zero out the start if xmin is not 0
1195         memset(ptr_x, 0, bxmin);
1196         ptr_x += s->xmin * s->desc->nb_components;
1197
1198         if (s->pixel_type == EXR_FLOAT) {
1199             // 32-bit
1200             if (trc_func) {
1201                 for (x = 0; x < td->xsize; x++) {
1202                     union av_intfloat32 t;
1203
1204                     for (c = 0; c < rgb_channel_count; c++) {
1205                         t.i = bytestream_get_le32(&rgb[c]);
1206                         t.f = trc_func(t.f);
1207                         *ptr_x++ = exr_flt2uint(t.i);
1208                     }
1209                     if (channel_buffer[3])
1210                         *ptr_x++ = exr_flt2uint(bytestream_get_le32(&a));
1211                 }
1212             } else {
1213                 for (x = 0; x < td->xsize; x++) {
1214                     union av_intfloat32 t;
1215                     int c;
1216
1217                     for (c = 0; c < rgb_channel_count; c++) {
1218                         t.i = bytestream_get_le32(&rgb[c]);
1219                         if (t.f > 0.0f)  /* avoid negative values */
1220                             t.f = powf(t.f, one_gamma);
1221                         *ptr_x++ = exr_flt2uint(t.i);
1222                     }
1223
1224                     if (channel_buffer[3])
1225                         *ptr_x++ = exr_flt2uint(bytestream_get_le32(&a));
1226                 }
1227             }
1228         } else if (s->pixel_type == EXR_HALF) {
1229             // 16-bit
1230             for (x = 0; x < td->xsize; x++) {
1231                 int c;
1232                 for (c = 0; c < rgb_channel_count; c++) {
1233                     *ptr_x++ = s->gamma_table[bytestream_get_le16(&rgb[c])];
1234                 }
1235
1236                 if (channel_buffer[3])
1237                     *ptr_x++ = exr_halflt2uint(bytestream_get_le16(&a));
1238             }
1239         } else if (s->pixel_type == EXR_UINT) {
1240             for (x = 0; x < td->xsize; x++) {
1241                 for (c = 0; c < rgb_channel_count; c++) {
1242                     *ptr_x++ = bytestream_get_le32(&rgb[c]) >> 16;
1243                 }
1244
1245                 if (channel_buffer[3])
1246                     *ptr_x++ = bytestream_get_le32(&a) >> 16;
1247             }
1248         }
1249
1250         // Zero out the end if xmax+1 is not w
1251         memset(ptr_x, 0, axmax);
1252
1253         channel_buffer[0] += td->channel_line_size;
1254         channel_buffer[1] += td->channel_line_size;
1255         channel_buffer[2] += td->channel_line_size;
1256         if (channel_buffer[3])
1257             channel_buffer[3] += td->channel_line_size;
1258     }
1259
1260     return 0;
1261 }
1262
1263 /**
1264  * Check if the variable name corresponds to its data type.
1265  *
1266  * @param s              the EXRContext
1267  * @param value_name     name of the variable to check
1268  * @param value_type     type of the variable to check
1269  * @param minimum_length minimum length of the variable data
1270  *
1271  * @return bytes to read containing variable data
1272  *         -1 if variable is not found
1273  *         0 if buffer ended prematurely
1274  */
1275 static int check_header_variable(EXRContext *s,
1276                                  const char *value_name,
1277                                  const char *value_type,
1278                                  unsigned int minimum_length)
1279 {
1280     int var_size = -1;
1281
1282     if (bytestream2_get_bytes_left(&s->gb) >= minimum_length &&
1283         !strcmp(s->gb.buffer, value_name)) {
1284         // found value_name, jump to value_type (null terminated strings)
1285         s->gb.buffer += strlen(value_name) + 1;
1286         if (!strcmp(s->gb.buffer, value_type)) {
1287             s->gb.buffer += strlen(value_type) + 1;
1288             var_size = bytestream2_get_le32(&s->gb);
1289             // don't go read past boundaries
1290             if (var_size > bytestream2_get_bytes_left(&s->gb))
1291                 var_size = 0;
1292         } else {
1293             // value_type not found, reset the buffer
1294             s->gb.buffer -= strlen(value_name) + 1;
1295             av_log(s->avctx, AV_LOG_WARNING,
1296                    "Unknown data type %s for header variable %s.\n",
1297                    value_type, value_name);
1298         }
1299     }
1300
1301     return var_size;
1302 }
1303
1304 static int decode_header(EXRContext *s, AVFrame *frame)
1305 {
1306     AVDictionary *metadata = NULL;
1307     int magic_number, version, i, flags, sar = 0;
1308     int layer_match = 0;
1309     int ret;
1310
1311     s->current_channel_offset = 0;
1312     s->xmin               = ~0;
1313     s->xmax               = ~0;
1314     s->ymin               = ~0;
1315     s->ymax               = ~0;
1316     s->xdelta             = ~0;
1317     s->ydelta             = ~0;
1318     s->channel_offsets[0] = -1;
1319     s->channel_offsets[1] = -1;
1320     s->channel_offsets[2] = -1;
1321     s->channel_offsets[3] = -1;
1322     s->pixel_type         = EXR_UNKNOWN;
1323     s->compression        = EXR_UNKN;
1324     s->nb_channels        = 0;
1325     s->w                  = 0;
1326     s->h                  = 0;
1327     s->tile_attr.xSize    = -1;
1328     s->tile_attr.ySize    = -1;
1329     s->is_tile            = 0;
1330     s->is_luma            = 0;
1331
1332     if (bytestream2_get_bytes_left(&s->gb) < 10) {
1333         av_log(s->avctx, AV_LOG_ERROR, "Header too short to parse.\n");
1334         return AVERROR_INVALIDDATA;
1335     }
1336
1337     magic_number = bytestream2_get_le32(&s->gb);
1338     if (magic_number != 20000630) {
1339         /* As per documentation of OpenEXR, it is supposed to be
1340          * int 20000630 little-endian */
1341         av_log(s->avctx, AV_LOG_ERROR, "Wrong magic number %d.\n", magic_number);
1342         return AVERROR_INVALIDDATA;
1343     }
1344
1345     version = bytestream2_get_byte(&s->gb);
1346     if (version != 2) {
1347         avpriv_report_missing_feature(s->avctx, "Version %d", version);
1348         return AVERROR_PATCHWELCOME;
1349     }
1350
1351     flags = bytestream2_get_le24(&s->gb);
1352
1353     if (flags == 0x00)
1354         s->is_tile = 0;
1355     else if (flags & 0x02)
1356         s->is_tile = 1;
1357     else{
1358         avpriv_report_missing_feature(s->avctx, "flags %d", flags);
1359         return AVERROR_PATCHWELCOME;
1360     }
1361
1362     // Parse the header
1363     while (bytestream2_get_bytes_left(&s->gb) > 0 && *s->gb.buffer) {
1364         int var_size;
1365         if ((var_size = check_header_variable(s, "channels",
1366                                               "chlist", 38)) >= 0) {
1367             GetByteContext ch_gb;
1368             if (!var_size) {
1369                 ret = AVERROR_INVALIDDATA;
1370                 goto fail;
1371             }
1372
1373             bytestream2_init(&ch_gb, s->gb.buffer, var_size);
1374
1375             while (bytestream2_get_bytes_left(&ch_gb) >= 19) {
1376                 EXRChannel *channel;
1377                 enum ExrPixelType current_pixel_type;
1378                 int channel_index = -1;
1379                 int xsub, ysub;
1380
1381                 if (strcmp(s->layer, "") != 0) {
1382                     if (strncmp(ch_gb.buffer, s->layer, strlen(s->layer)) == 0) {
1383                         layer_match = 1;
1384                         av_log(s->avctx, AV_LOG_INFO,
1385                                "Channel match layer : %s.\n", ch_gb.buffer);
1386                         ch_gb.buffer += strlen(s->layer);
1387                         if (*ch_gb.buffer == '.')
1388                             ch_gb.buffer++;         /* skip dot if not given */
1389                     } else {
1390                         av_log(s->avctx, AV_LOG_INFO,
1391                                "Channel doesn't match layer : %s.\n", ch_gb.buffer);
1392                     }
1393                 } else {
1394                     layer_match = 1;
1395                 }
1396
1397                 if (layer_match) { /* only search channel if the layer match is valid */
1398                     if (!strcmp(ch_gb.buffer, "R") ||
1399                         !strcmp(ch_gb.buffer, "X") ||
1400                         !strcmp(ch_gb.buffer, "U")) {
1401                         channel_index = 0;
1402                         s->is_luma = 0;
1403                     } else if (!strcmp(ch_gb.buffer, "G") ||
1404                                !strcmp(ch_gb.buffer, "V")) {
1405                         channel_index = 1;
1406                         s->is_luma = 0;
1407                     } else if (!strcmp(ch_gb.buffer, "Y")) {
1408                         channel_index = 1;
1409                         s->is_luma = 1;
1410                     } else if (!strcmp(ch_gb.buffer, "B") ||
1411                                !strcmp(ch_gb.buffer, "Z") ||
1412                                !strcmp(ch_gb.buffer, "W")){
1413                                channel_index = 2;
1414                         s->is_luma = 0;
1415                     } else if (!strcmp(ch_gb.buffer, "A")) {
1416                         channel_index = 3;
1417                     } else {
1418                         av_log(s->avctx, AV_LOG_WARNING,
1419                                "Unsupported channel %.256s.\n", ch_gb.buffer);
1420                     }
1421                 }
1422
1423                 /* skip until you get a 0 */
1424                 while (bytestream2_get_bytes_left(&ch_gb) > 0 &&
1425                        bytestream2_get_byte(&ch_gb))
1426                     continue;
1427
1428                 if (bytestream2_get_bytes_left(&ch_gb) < 4) {
1429                     av_log(s->avctx, AV_LOG_ERROR, "Incomplete header.\n");
1430                     ret = AVERROR_INVALIDDATA;
1431                     goto fail;
1432                 }
1433
1434                 current_pixel_type = bytestream2_get_le32(&ch_gb);
1435                 if (current_pixel_type >= EXR_UNKNOWN) {
1436                     avpriv_report_missing_feature(s->avctx, "Pixel type %d",
1437                                                   current_pixel_type);
1438                     ret = AVERROR_PATCHWELCOME;
1439                     goto fail;
1440                 }
1441
1442                 bytestream2_skip(&ch_gb, 4);
1443                 xsub = bytestream2_get_le32(&ch_gb);
1444                 ysub = bytestream2_get_le32(&ch_gb);
1445
1446                 if (xsub != 1 || ysub != 1) {
1447                     avpriv_report_missing_feature(s->avctx,
1448                                                   "Subsampling %dx%d",
1449                                                   xsub, ysub);
1450                     ret = AVERROR_PATCHWELCOME;
1451                     goto fail;
1452                 }
1453
1454                 if (channel_index >= 0 && s->channel_offsets[channel_index] == -1) { /* channel has not been previously assigned */
1455                     if (s->pixel_type != EXR_UNKNOWN &&
1456                         s->pixel_type != current_pixel_type) {
1457                         av_log(s->avctx, AV_LOG_ERROR,
1458                                "RGB channels not of the same depth.\n");
1459                         ret = AVERROR_INVALIDDATA;
1460                         goto fail;
1461                     }
1462                     s->pixel_type                     = current_pixel_type;
1463                     s->channel_offsets[channel_index] = s->current_channel_offset;
1464                 }
1465
1466                 s->channels = av_realloc(s->channels,
1467                                          ++s->nb_channels * sizeof(EXRChannel));
1468                 if (!s->channels) {
1469                     ret = AVERROR(ENOMEM);
1470                     goto fail;
1471                 }
1472                 channel             = &s->channels[s->nb_channels - 1];
1473                 channel->pixel_type = current_pixel_type;
1474                 channel->xsub       = xsub;
1475                 channel->ysub       = ysub;
1476
1477                 if (current_pixel_type == EXR_HALF) {
1478                     s->current_channel_offset += 2;
1479                 } else {/* Float or UINT32 */
1480                     s->current_channel_offset += 4;
1481                 }
1482             }
1483
1484             /* Check if all channels are set with an offset or if the channels
1485              * are causing an overflow  */
1486             if (!s->is_luma){/* if we expected to have at least 3 channels */
1487                 if (FFMIN3(s->channel_offsets[0],
1488                            s->channel_offsets[1],
1489                            s->channel_offsets[2]) < 0) {
1490                     if (s->channel_offsets[0] < 0)
1491                         av_log(s->avctx, AV_LOG_ERROR, "Missing red channel.\n");
1492                     if (s->channel_offsets[1] < 0)
1493                         av_log(s->avctx, AV_LOG_ERROR, "Missing green channel.\n");
1494                     if (s->channel_offsets[2] < 0)
1495                         av_log(s->avctx, AV_LOG_ERROR, "Missing blue channel.\n");
1496                     ret = AVERROR_INVALIDDATA;
1497                     goto fail;
1498                 }
1499             }
1500
1501             // skip one last byte and update main gb
1502             s->gb.buffer = ch_gb.buffer + 1;
1503             continue;
1504         } else if ((var_size = check_header_variable(s, "dataWindow", "box2i",
1505                                                      31)) >= 0) {
1506             if (!var_size) {
1507                 ret = AVERROR_INVALIDDATA;
1508                 goto fail;
1509             }
1510
1511             s->xmin   = bytestream2_get_le32(&s->gb);
1512             s->ymin   = bytestream2_get_le32(&s->gb);
1513             s->xmax   = bytestream2_get_le32(&s->gb);
1514             s->ymax   = bytestream2_get_le32(&s->gb);
1515             s->xdelta = (s->xmax - s->xmin) + 1;
1516             s->ydelta = (s->ymax - s->ymin) + 1;
1517
1518             continue;
1519         } else if ((var_size = check_header_variable(s, "displayWindow",
1520                                                      "box2i", 34)) >= 0) {
1521             if (!var_size) {
1522                 ret = AVERROR_INVALIDDATA;
1523                 goto fail;
1524             }
1525
1526             bytestream2_skip(&s->gb, 8);
1527             s->w = bytestream2_get_le32(&s->gb) + 1;
1528             s->h = bytestream2_get_le32(&s->gb) + 1;
1529
1530             continue;
1531         } else if ((var_size = check_header_variable(s, "lineOrder",
1532                                                      "lineOrder", 25)) >= 0) {
1533             int line_order;
1534             if (!var_size) {
1535                 ret = AVERROR_INVALIDDATA;
1536                 goto fail;
1537             }
1538
1539             line_order = bytestream2_get_byte(&s->gb);
1540             av_log(s->avctx, AV_LOG_DEBUG, "line order: %d.\n", line_order);
1541             if (line_order > 2) {
1542                 av_log(s->avctx, AV_LOG_ERROR, "Unknown line order.\n");
1543                 ret = AVERROR_INVALIDDATA;
1544                 goto fail;
1545             }
1546
1547             continue;
1548         } else if ((var_size = check_header_variable(s, "pixelAspectRatio",
1549                                                      "float", 31)) >= 0) {
1550             if (!var_size) {
1551                 ret = AVERROR_INVALIDDATA;
1552                 goto fail;
1553             }
1554
1555             sar = bytestream2_get_le32(&s->gb);
1556
1557             continue;
1558         } else if ((var_size = check_header_variable(s, "compression",
1559                                                      "compression", 29)) >= 0) {
1560             if (!var_size) {
1561                 ret = AVERROR_INVALIDDATA;
1562                 goto fail;
1563             }
1564
1565             if (s->compression == EXR_UNKN)
1566                 s->compression = bytestream2_get_byte(&s->gb);
1567             else
1568                 av_log(s->avctx, AV_LOG_WARNING,
1569                        "Found more than one compression attribute.\n");
1570
1571             continue;
1572         } else if ((var_size = check_header_variable(s, "tiles",
1573                                                      "tiledesc", 22)) >= 0) {
1574             char tileLevel;
1575
1576             if (!s->is_tile)
1577                 av_log(s->avctx, AV_LOG_WARNING,
1578                        "Found tile attribute and scanline flags. Exr will be interpreted as scanline.\n");
1579
1580             s->tile_attr.xSize = bytestream2_get_le32(&s->gb);
1581             s->tile_attr.ySize = bytestream2_get_le32(&s->gb);
1582
1583             tileLevel = bytestream2_get_byte(&s->gb);
1584             s->tile_attr.level_mode = tileLevel & 0x0f;
1585             s->tile_attr.level_round = (tileLevel >> 4) & 0x0f;
1586
1587             if (s->tile_attr.level_mode >= EXR_TILE_LEVEL_UNKNOWN){
1588                 avpriv_report_missing_feature(s->avctx, "Tile level mode %d",
1589                                               s->tile_attr.level_mode);
1590                 ret = AVERROR_PATCHWELCOME;
1591                 goto fail;
1592             }
1593
1594             if (s->tile_attr.level_round >= EXR_TILE_ROUND_UNKNOWN) {
1595                 avpriv_report_missing_feature(s->avctx, "Tile level round %d",
1596                                               s->tile_attr.level_round);
1597                 ret = AVERROR_PATCHWELCOME;
1598                 goto fail;
1599             }
1600
1601             continue;
1602         } else if ((var_size = check_header_variable(s, "writer",
1603                                                      "string", 1)) >= 0) {
1604             uint8_t key[256] = { 0 };
1605
1606             bytestream2_get_buffer(&s->gb, key, FFMIN(sizeof(key) - 1, var_size));
1607             av_dict_set(&metadata, "writer", key, 0);
1608
1609             continue;
1610         }
1611
1612         // Check if there are enough bytes for a header
1613         if (bytestream2_get_bytes_left(&s->gb) <= 9) {
1614             av_log(s->avctx, AV_LOG_ERROR, "Incomplete header\n");
1615             ret = AVERROR_INVALIDDATA;
1616             goto fail;
1617         }
1618
1619         // Process unknown variables
1620         for (i = 0; i < 2; i++) // value_name and value_type
1621             while (bytestream2_get_byte(&s->gb) != 0);
1622
1623         // Skip variable length
1624         bytestream2_skip(&s->gb, bytestream2_get_le32(&s->gb));
1625     }
1626
1627     ff_set_sar(s->avctx, av_d2q(av_int2float(sar), 255));
1628
1629     if (s->compression == EXR_UNKN) {
1630         av_log(s->avctx, AV_LOG_ERROR, "Missing compression attribute.\n");
1631         ret = AVERROR_INVALIDDATA;
1632         goto fail;
1633     }
1634
1635     if (s->is_tile) {
1636         if (s->tile_attr.xSize < 1 || s->tile_attr.ySize < 1) {
1637             av_log(s->avctx, AV_LOG_ERROR, "Invalid tile attribute.\n");
1638             ret = AVERROR_INVALIDDATA;
1639             goto fail;
1640         }
1641     }
1642
1643     if (bytestream2_get_bytes_left(&s->gb) <= 0) {
1644         av_log(s->avctx, AV_LOG_ERROR, "Incomplete frame.\n");
1645         ret = AVERROR_INVALIDDATA;
1646         goto fail;
1647     }
1648
1649     frame->metadata = metadata;
1650
1651     // aaand we are done
1652     bytestream2_skip(&s->gb, 1);
1653     return 0;
1654 fail:
1655     av_dict_free(&metadata);
1656     return ret;
1657 }
1658
1659 static int decode_frame(AVCodecContext *avctx, void *data,
1660                         int *got_frame, AVPacket *avpkt)
1661 {
1662     EXRContext *s = avctx->priv_data;
1663     ThreadFrame frame = { .f = data };
1664     AVFrame *picture = data;
1665     uint8_t *ptr;
1666
1667     int y, ret;
1668     int out_line_size;
1669     int nb_blocks;   /* nb scanline or nb tile */
1670     uint64_t start_offset_table;
1671     uint64_t start_next_scanline;
1672     PutByteContext offset_table_writer;
1673
1674     bytestream2_init(&s->gb, avpkt->data, avpkt->size);
1675
1676     if ((ret = decode_header(s, picture)) < 0)
1677         return ret;
1678
1679     switch (s->pixel_type) {
1680     case EXR_FLOAT:
1681     case EXR_HALF:
1682     case EXR_UINT:
1683         if (s->channel_offsets[3] >= 0) {
1684             if (!s->is_luma) {
1685                 avctx->pix_fmt = AV_PIX_FMT_RGBA64;
1686             } else {
1687                 avctx->pix_fmt = AV_PIX_FMT_YA16;
1688             }
1689         } else {
1690             if (!s->is_luma) {
1691                 avctx->pix_fmt = AV_PIX_FMT_RGB48;
1692             } else {
1693                 avctx->pix_fmt = AV_PIX_FMT_GRAY16;
1694             }
1695         }
1696         break;
1697     default:
1698         av_log(avctx, AV_LOG_ERROR, "Missing channel list.\n");
1699         return AVERROR_INVALIDDATA;
1700     }
1701
1702     if (s->apply_trc_type != AVCOL_TRC_UNSPECIFIED)
1703         avctx->color_trc = s->apply_trc_type;
1704
1705     switch (s->compression) {
1706     case EXR_RAW:
1707     case EXR_RLE:
1708     case EXR_ZIP1:
1709         s->scan_lines_per_block = 1;
1710         break;
1711     case EXR_PXR24:
1712     case EXR_ZIP16:
1713         s->scan_lines_per_block = 16;
1714         break;
1715     case EXR_PIZ:
1716     case EXR_B44:
1717     case EXR_B44A:
1718         s->scan_lines_per_block = 32;
1719         break;
1720     default:
1721         avpriv_report_missing_feature(avctx, "Compression %d", s->compression);
1722         return AVERROR_PATCHWELCOME;
1723     }
1724
1725     /* Verify the xmin, xmax, ymin, ymax and xdelta before setting
1726      * the actual image size. */
1727     if (s->xmin > s->xmax                  ||
1728         s->ymin > s->ymax                  ||
1729         s->xdelta != s->xmax - s->xmin + 1 ||
1730         s->xmax >= s->w                    ||
1731         s->ymax >= s->h) {
1732         av_log(avctx, AV_LOG_ERROR, "Wrong or missing size information.\n");
1733         return AVERROR_INVALIDDATA;
1734     }
1735
1736     if ((ret = ff_set_dimensions(avctx, s->w, s->h)) < 0)
1737         return ret;
1738
1739     s->desc          = av_pix_fmt_desc_get(avctx->pix_fmt);
1740     if (!s->desc)
1741         return AVERROR_INVALIDDATA;
1742     out_line_size    = avctx->width * 2 * s->desc->nb_components;
1743
1744     if (s->is_tile) {
1745         nb_blocks = ((s->xdelta + s->tile_attr.xSize - 1) / s->tile_attr.xSize) *
1746         ((s->ydelta + s->tile_attr.ySize - 1) / s->tile_attr.ySize);
1747     } else { /* scanline */
1748         nb_blocks = (s->ydelta + s->scan_lines_per_block - 1) /
1749         s->scan_lines_per_block;
1750     }
1751
1752     if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
1753         return ret;
1754
1755     if (bytestream2_get_bytes_left(&s->gb) < nb_blocks * 8)
1756         return AVERROR_INVALIDDATA;
1757
1758     // check offset table and recreate it if need
1759     if (!s->is_tile && bytestream2_peek_le64(&s->gb) == 0) {
1760         av_log(s->avctx, AV_LOG_DEBUG, "recreating invalid scanline offset table\n");
1761
1762         start_offset_table = bytestream2_tell(&s->gb);
1763         start_next_scanline = start_offset_table + nb_blocks * 8;
1764         bytestream2_init_writer(&offset_table_writer, &avpkt->data[start_offset_table], nb_blocks * 8);
1765
1766         for (y = 0; y < nb_blocks; y++) {
1767             /* write offset of prev scanline in offset table */
1768             bytestream2_put_le64(&offset_table_writer, start_next_scanline);
1769
1770             /* get len of next scanline */
1771             bytestream2_seek(&s->gb, start_next_scanline + 4, SEEK_SET);/* skip line number */
1772             start_next_scanline += (bytestream2_get_le32(&s->gb) + 8);
1773         }
1774         bytestream2_seek(&s->gb, start_offset_table, SEEK_SET);
1775     }
1776
1777     // save pointer we are going to use in decode_block
1778     s->buf      = avpkt->data;
1779     s->buf_size = avpkt->size;
1780     ptr         = picture->data[0];
1781
1782     // Zero out the start if ymin is not 0
1783     for (y = 0; y < s->ymin; y++) {
1784         memset(ptr, 0, out_line_size);
1785         ptr += picture->linesize[0];
1786     }
1787
1788     s->picture = picture;
1789
1790     avctx->execute2(avctx, decode_block, s->thread_data, NULL, nb_blocks);
1791
1792     // Zero out the end if ymax+1 is not h
1793     ptr = picture->data[0] + ((s->ymax+1) * picture->linesize[0]);
1794     for (y = s->ymax + 1; y < avctx->height; y++) {
1795         memset(ptr, 0, out_line_size);
1796         ptr += picture->linesize[0];
1797     }
1798
1799     picture->pict_type = AV_PICTURE_TYPE_I;
1800     *got_frame = 1;
1801
1802     return avpkt->size;
1803 }
1804
1805 static av_cold int decode_init(AVCodecContext *avctx)
1806 {
1807     EXRContext *s = avctx->priv_data;
1808     uint32_t i;
1809     union av_intfloat32 t;
1810     float one_gamma = 1.0f / s->gamma;
1811     avpriv_trc_function trc_func = NULL;
1812
1813     s->avctx              = avctx;
1814
1815     ff_exrdsp_init(&s->dsp);
1816
1817 #if HAVE_BIGENDIAN
1818     ff_bswapdsp_init(&s->bbdsp);
1819 #endif
1820
1821     trc_func = avpriv_get_trc_function_from_trc(s->apply_trc_type);
1822     if (trc_func) {
1823         for (i = 0; i < 65536; ++i) {
1824             t = exr_half2float(i);
1825             t.f = trc_func(t.f);
1826             s->gamma_table[i] = exr_flt2uint(t.i);
1827         }
1828     } else {
1829         if (one_gamma > 0.9999f && one_gamma < 1.0001f) {
1830             for (i = 0; i < 65536; ++i)
1831                 s->gamma_table[i] = exr_halflt2uint(i);
1832         } else {
1833             for (i = 0; i < 65536; ++i) {
1834                 t = exr_half2float(i);
1835                 /* If negative value we reuse half value */
1836                 if (t.f <= 0.0f) {
1837                     s->gamma_table[i] = exr_halflt2uint(i);
1838                 } else {
1839                     t.f = powf(t.f, one_gamma);
1840                     s->gamma_table[i] = exr_flt2uint(t.i);
1841                 }
1842             }
1843         }
1844     }
1845
1846     // allocate thread data, used for non EXR_RAW compression types
1847     s->thread_data = av_mallocz_array(avctx->thread_count, sizeof(EXRThreadData));
1848     if (!s->thread_data)
1849         return AVERROR_INVALIDDATA;
1850
1851     return 0;
1852 }
1853
1854 #if HAVE_THREADS
1855 static int decode_init_thread_copy(AVCodecContext *avctx)
1856 {    EXRContext *s = avctx->priv_data;
1857
1858     // allocate thread data, used for non EXR_RAW compression types
1859     s->thread_data = av_mallocz_array(avctx->thread_count, sizeof(EXRThreadData));
1860     if (!s->thread_data)
1861         return AVERROR_INVALIDDATA;
1862
1863     return 0;
1864 }
1865 #endif
1866
1867 static av_cold int decode_end(AVCodecContext *avctx)
1868 {
1869     EXRContext *s = avctx->priv_data;
1870     int i;
1871     for (i = 0; i < avctx->thread_count; i++) {
1872         EXRThreadData *td = &s->thread_data[i];
1873         av_freep(&td->uncompressed_data);
1874         av_freep(&td->tmp);
1875         av_freep(&td->bitmap);
1876         av_freep(&td->lut);
1877     }
1878
1879     av_freep(&s->thread_data);
1880     av_freep(&s->channels);
1881
1882     return 0;
1883 }
1884
1885 #define OFFSET(x) offsetof(EXRContext, x)
1886 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
1887 static const AVOption options[] = {
1888     { "layer", "Set the decoding layer", OFFSET(layer),
1889         AV_OPT_TYPE_STRING, { .str = "" }, 0, 0, VD },
1890     { "gamma", "Set the float gamma value when decoding", OFFSET(gamma),
1891         AV_OPT_TYPE_FLOAT, { .dbl = 1.0f }, 0.001, FLT_MAX, VD },
1892
1893     // XXX: Note the abuse of the enum using AVCOL_TRC_UNSPECIFIED to subsume the existing gamma option
1894     { "apply_trc", "color transfer characteristics to apply to EXR linear input", OFFSET(apply_trc_type),
1895         AV_OPT_TYPE_INT, {.i64 = AVCOL_TRC_UNSPECIFIED }, 1, AVCOL_TRC_NB-1, VD, "apply_trc_type"},
1896     { "bt709",        "BT.709",           0,
1897         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT709 },        INT_MIN, INT_MAX, VD, "apply_trc_type"},
1898     { "gamma",        "gamma",            0,
1899         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_UNSPECIFIED },  INT_MIN, INT_MAX, VD, "apply_trc_type"},
1900     { "gamma22",      "BT.470 M",         0,
1901         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_GAMMA22 },      INT_MIN, INT_MAX, VD, "apply_trc_type"},
1902     { "gamma28",      "BT.470 BG",        0,
1903         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_GAMMA28 },      INT_MIN, INT_MAX, VD, "apply_trc_type"},
1904     { "smpte170m",    "SMPTE 170 M",      0,
1905         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTE170M },    INT_MIN, INT_MAX, VD, "apply_trc_type"},
1906     { "smpte240m",    "SMPTE 240 M",      0,
1907         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTE240M },    INT_MIN, INT_MAX, VD, "apply_trc_type"},
1908     { "linear",       "Linear",           0,
1909         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_LINEAR },       INT_MIN, INT_MAX, VD, "apply_trc_type"},
1910     { "log",          "Log",              0,
1911         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_LOG },          INT_MIN, INT_MAX, VD, "apply_trc_type"},
1912     { "log_sqrt",     "Log square root",  0,
1913         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_LOG_SQRT },     INT_MIN, INT_MAX, VD, "apply_trc_type"},
1914     { "iec61966_2_4", "IEC 61966-2-4",    0,
1915         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_IEC61966_2_4 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1916     { "bt1361",       "BT.1361",          0,
1917         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT1361_ECG },   INT_MIN, INT_MAX, VD, "apply_trc_type"},
1918     { "iec61966_2_1", "IEC 61966-2-1",    0,
1919         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_IEC61966_2_1 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1920     { "bt2020_10bit", "BT.2020 - 10 bit", 0,
1921         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT2020_10 },    INT_MIN, INT_MAX, VD, "apply_trc_type"},
1922     { "bt2020_12bit", "BT.2020 - 12 bit", 0,
1923         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_BT2020_12 },    INT_MIN, INT_MAX, VD, "apply_trc_type"},
1924     { "smpte2084",    "SMPTE ST 2084",    0,
1925         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTEST2084 },  INT_MIN, INT_MAX, VD, "apply_trc_type"},
1926     { "smpte428_1",   "SMPTE ST 428-1",   0,
1927         AV_OPT_TYPE_CONST, {.i64 = AVCOL_TRC_SMPTEST428_1 }, INT_MIN, INT_MAX, VD, "apply_trc_type"},
1928
1929     { NULL },
1930 };
1931
1932 static const AVClass exr_class = {
1933     .class_name = "EXR",
1934     .item_name  = av_default_item_name,
1935     .option     = options,
1936     .version    = LIBAVUTIL_VERSION_INT,
1937 };
1938
1939 AVCodec ff_exr_decoder = {
1940     .name             = "exr",
1941     .long_name        = NULL_IF_CONFIG_SMALL("OpenEXR image"),
1942     .type             = AVMEDIA_TYPE_VIDEO,
1943     .id               = AV_CODEC_ID_EXR,
1944     .priv_data_size   = sizeof(EXRContext),
1945     .init             = decode_init,
1946     .init_thread_copy = ONLY_IF_THREADS_ENABLED(decode_init_thread_copy),
1947     .close            = decode_end,
1948     .decode           = decode_frame,
1949     .capabilities     = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS |
1950                         AV_CODEC_CAP_SLICE_THREADS,
1951     .priv_class       = &exr_class,
1952 };