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