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