libavcodec/exr.c
b7ce3242
 /*
  * OpenEXR (.exr) image decoder
  * Copyright (c) 2009 Jimmy Christensen
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
3c1d52d3
  * @file
b7ce3242
  * OpenEXR decoder
  * @author Jimmy Christensen
  *
  * For more information on the OpenEXR format, visit:
  *  http://openexr.com/
  *
  * exr_flt2uint() and exr_halflt2uint() is credited to  Reimar Döffinger
  */
 
74f3c53b
 #include <zlib.h>
 
b7ce3242
 #include "avcodec.h"
 #include "bytestream.h"
f7e26cca
 #include "mathops.h"
10338073
 #include "thread.h"
b7ce3242
 #include "libavutil/imgutils.h"
 
 enum ExrCompr {
     EXR_RAW   = 0,
     EXR_RLE   = 1,
     EXR_ZIP1  = 2,
     EXR_ZIP16 = 3,
     EXR_PIZ   = 4,
74f3c53b
     EXR_B44   = 6,
     EXR_B44A  = 7,
b7ce3242
 };
 
 typedef struct EXRContext {
     AVFrame picture;
     int compr;
     int bits_per_color_id;
2c31ed33
     int channel_offsets[4]; // 0 = red, 1 = green, 2 = blue and 3 = alpha
74f3c53b
 
     uint8_t *uncompressed_data;
     int uncompressed_size;
 
     uint8_t *tmp;
fedefe4a
     int tmp_size;
b7ce3242
 } EXRContext;
 
 /**
  * Converts from 32-bit float as uint32_t to uint16_t
  *
  * @param v 32-bit float
  * @return normalized 16-bit unsigned int
  */
 static inline uint16_t exr_flt2uint(uint32_t v)
 {
     unsigned int exp = v >> 23;
     // "HACK": negative values result in exp<  0, so clipping them to 0
     // is also handled by this condition, avoids explicit check for sign bit.
     if (exp<= 127 + 7 - 24) // we would shift out all bits anyway
         return 0;
     if (exp >= 127)
         return 0xffff;
     v &= 0x007fffff;
     return (v + (1 << 23)) >> (127 + 7 - exp);
 }
 
 /**
  * Converts from 16-bit float as uint16_t to uint16_t
  *
  * @param v 16-bit float
  * @return normalized 16-bit unsigned int
  */
 static inline uint16_t exr_halflt2uint(uint16_t v)
 {
3532a87a
     unsigned exp = 14 - (v >> 10);
     if (exp >= 14) {
         if (exp == 14) return (v >> 9) & 1;
         else           return (v & 0x8000) ? 0 : 0xffff;
     }
b7ce3242
     v <<= 6;
3532a87a
     return (v + (1 << 16)) >> (exp + 1);
b7ce3242
 }
 
 /**
  * Gets the size of the header variable
  *
  * @param **buf the current pointer location in the header where
  * the variable data starts
  * @param *buf_end pointer location of the end of the buffer
  * @return size of variable data
  */
 static unsigned int get_header_variable_length(const uint8_t **buf,
                                                const uint8_t *buf_end)
 {
     unsigned int variable_buffer_data_size = bytestream_get_le32(buf);
     if (variable_buffer_data_size >= buf_end - *buf)
         return 0;
     return variable_buffer_data_size;
 }
 
 /**
  * Checks if the variable name corresponds with it's data type
  *
  * @param *avctx the AVCodecContext
  * @param **buf the current pointer location in the header where
  * the variable name starts
  * @param *buf_end pointer location of the end of the buffer
  * @param *value_name name of the varible to check
  * @param *value_type type of the varible to check
  * @param minimum_length minimum length of the variable data
  * @param variable_buffer_data_size variable length read from the header
  * after it's checked
f148537c
  * @return negative if variable is invalid
b7ce3242
  */
f148537c
 static int check_header_variable(AVCodecContext *avctx,
b7ce3242
                                               const uint8_t **buf,
                                               const uint8_t *buf_end,
                                               const char *value_name,
                                               const char *value_type,
                                               unsigned int minimum_length,
                                               unsigned int *variable_buffer_data_size)
 {
     if (buf_end - *buf >= minimum_length && !strcmp(*buf, value_name)) {
         *buf += strlen(value_name)+1;
         if (!strcmp(*buf, value_type)) {
             *buf += strlen(value_type)+1;
             *variable_buffer_data_size = get_header_variable_length(buf, buf_end);
             if (!*variable_buffer_data_size)
f148537c
                 av_log(avctx, AV_LOG_ERROR, "Incomplete header\n");
             if (*variable_buffer_data_size > buf_end - *buf)
                 return -1;
b7ce3242
             return 1;
         }
         *buf -= strlen(value_name)+1;
         av_log(avctx, AV_LOG_WARNING, "Unknown data type for header variable %s\n", value_name);
     }
f148537c
     return -1;
b7ce3242
 }
 
74f3c53b
 static void predictor(uint8_t *src, int size)
 {
     uint8_t *t = src + 1;
     uint8_t *stop = src + size;
 
     while (t < stop) {
         int d = (int)t[-1] + (int)t[0] - 128;
         t[0] = d;
         ++t;
     }
 }
 
 static void reorder_pixels(uint8_t *src, uint8_t *dst, int size)
 {
     const int8_t *t1 = src;
     const int8_t *t2 = src + (size + 1) / 2;
     int8_t *s = dst;
     int8_t *stop = s + size;
 
     while (1) {
         if (s < stop)
             *(s++) = *(t1++);
         else
             break;
 
         if (s < stop)
             *(s++) = *(t2++);
         else
             break;
     }
 }
 
f7e26cca
 static int rle_uncompress(const uint8_t *src, int ssize, uint8_t *dst, int dsize)
 {
     int8_t *d = (int8_t *)dst;
     int8_t *s = (int8_t *)src;
     int8_t *dend = d + dsize;
     int count;
 
     while (ssize > 0) {
         count = *s++;
 
         if (count < 0) {
             count = -count;
 
             if ((dsize -= count    ) < 0 ||
                 (ssize -= count + 1) < 0)
                 return -1;
 
             while (count--)
                 *d++ = *s++;
         } else {
             count++;
 
             if ((dsize -= count) < 0 ||
                 (ssize -= 2    ) < 0)
                 return -1;
 
             while (count--)
                 *d++ = *s;
 
             s++;
         }
     }
 
     return dend != d;
 }
 
b7ce3242
 static int decode_frame(AVCodecContext *avctx,
                         void *data,
4012cd6c
                         int *got_frame,
b7ce3242
                         AVPacket *avpkt)
 {
     const uint8_t *buf      = avpkt->data;
     unsigned int   buf_size = avpkt->size;
     const uint8_t *buf_end  = buf + buf_size;
 
0d002de4
     const AVPixFmtDescriptor *desc;
b7ce3242
     EXRContext *const s = avctx->priv_data;
     AVFrame *picture  = data;
     AVFrame *const p = &s->picture;
     uint8_t *ptr;
 
b4d0c3d9
     int i, x, y, stride, magic_number, version_flag, ret;
b7ce3242
     int w = 0;
     int h = 0;
     unsigned int xmin   = ~0;
     unsigned int xmax   = ~0;
     unsigned int ymin   = ~0;
     unsigned int ymax   = ~0;
     unsigned int xdelta = ~0;
 
a568a84e
     int out_line_size;
     int bxmin, axmax;
74f3c53b
     int scan_lines_per_block;
     unsigned long scan_line_size;
     unsigned long uncompressed_size;
 
b7ce3242
     unsigned int current_channel_offset = 0;
 
     s->channel_offsets[0] = -1;
     s->channel_offsets[1] = -1;
     s->channel_offsets[2] = -1;
d66b0cd5
     s->channel_offsets[3] = -1;
b7ce3242
     s->bits_per_color_id = -1;
 
dc0d551b
     if (buf_size < 10) {
f148537c
         av_log(avctx, AV_LOG_ERROR, "Too short header to parse\n");
b4d0c3d9
         return AVERROR_INVALIDDATA;
f148537c
     }
 
b7ce3242
     magic_number = bytestream_get_le32(&buf);
     if (magic_number != 20000630) { // As per documentation of OpenEXR it's supposed to be int 20000630 little-endian
634c01bc
         av_log(avctx, AV_LOG_ERROR, "Wrong magic number %d\n", magic_number);
b4d0c3d9
         return AVERROR_INVALIDDATA;
b7ce3242
     }
 
     version_flag = bytestream_get_le32(&buf);
     if ((version_flag & 0x200) == 0x200) {
f148537c
         av_log(avctx, AV_LOG_ERROR, "Tile based images are not supported\n");
b4d0c3d9
         return AVERROR_PATCHWELCOME;
b7ce3242
     }
 
     // Parse the header
f148537c
     while (buf < buf_end && buf[0]) {
b7ce3242
         unsigned int variable_buffer_data_size;
         // Process the channel list
f148537c
         if (check_header_variable(avctx, &buf, buf_end, "channels", "chlist", 38, &variable_buffer_data_size) >= 0) {
b7ce3242
             const uint8_t *channel_list_end;
             if (!variable_buffer_data_size)
b4d0c3d9
                 return AVERROR_INVALIDDATA;
b7ce3242
 
f7985f34
             channel_list_end = buf + variable_buffer_data_size;
b7ce3242
             while (channel_list_end - buf >= 19) {
                 int current_bits_per_color_id = -1;
                 int channel_index = -1;
 
                 if (!strcmp(buf, "R"))
                     channel_index = 0;
cd3136e8
                 else if (!strcmp(buf, "G"))
b7ce3242
                     channel_index = 1;
cd3136e8
                 else if (!strcmp(buf, "B"))
b7ce3242
                     channel_index = 2;
cd3136e8
                 else if (!strcmp(buf, "A"))
d66b0cd5
                     channel_index = 3;
cd3136e8
                 else
                     av_log(avctx, AV_LOG_WARNING, "Unsupported channel %.256s\n", buf);
b7ce3242
 
                 while (bytestream_get_byte(&buf) && buf < channel_list_end)
                     continue; /* skip */
 
                 if (channel_list_end - * &buf < 4) {
634c01bc
                     av_log(avctx, AV_LOG_ERROR, "Incomplete header\n");
b4d0c3d9
                     return AVERROR_INVALIDDATA;
b7ce3242
                 }
 
                 current_bits_per_color_id = bytestream_get_le32(&buf);
                 if (current_bits_per_color_id > 2) {
634c01bc
                     av_log(avctx, AV_LOG_ERROR, "Unknown color format\n");
b4d0c3d9
                     return AVERROR_INVALIDDATA;
b7ce3242
                 }
 
                 if (channel_index >= 0) {
                     if (s->bits_per_color_id != -1 && s->bits_per_color_id != current_bits_per_color_id) {
634c01bc
                         av_log(avctx, AV_LOG_ERROR, "RGB channels not of the same depth\n");
b4d0c3d9
                         return AVERROR_INVALIDDATA;
b7ce3242
                     }
                     s->bits_per_color_id  = current_bits_per_color_id;
                     s->channel_offsets[channel_index] = current_channel_offset;
                 }
 
                 current_channel_offset += 1 << current_bits_per_color_id;
                 buf += 12;
             }
 
             /* Check if all channels are set with an offset or if the channels
              * are causing an overflow  */
 
             if (FFMIN3(s->channel_offsets[0],
                        s->channel_offsets[1],
                        s->channel_offsets[2]) < 0) {
                 if (s->channel_offsets[0] < 0)
634c01bc
                     av_log(avctx, AV_LOG_ERROR, "Missing red channel\n");
b7ce3242
                 if (s->channel_offsets[1] < 0)
634c01bc
                     av_log(avctx, AV_LOG_ERROR, "Missing green channel\n");
b7ce3242
                 if (s->channel_offsets[2] < 0)
634c01bc
                     av_log(avctx, AV_LOG_ERROR, "Missing blue channel\n");
b4d0c3d9
                 return AVERROR_INVALIDDATA;
b7ce3242
             }
 
             buf = channel_list_end;
             continue;
         }
 
         // Process the dataWindow variable
f148537c
         if (check_header_variable(avctx, &buf, buf_end, "dataWindow", "box2i", 31, &variable_buffer_data_size) >= 0) {
b7ce3242
             if (!variable_buffer_data_size)
b4d0c3d9
                 return AVERROR_INVALIDDATA;
b7ce3242
 
             xmin = AV_RL32(buf);
             ymin = AV_RL32(buf + 4);
             xmax = AV_RL32(buf + 8);
             ymax = AV_RL32(buf + 12);
             xdelta = (xmax-xmin) + 1;
 
             buf += variable_buffer_data_size;
             continue;
         }
 
         // Process the displayWindow variable
f148537c
         if (check_header_variable(avctx, &buf, buf_end, "displayWindow", "box2i", 34, &variable_buffer_data_size) >= 0) {
b7ce3242
             if (!variable_buffer_data_size)
b4d0c3d9
                 return AVERROR_INVALIDDATA;
b7ce3242
 
             w = AV_RL32(buf + 8) + 1;
             h = AV_RL32(buf + 12) + 1;
 
             buf += variable_buffer_data_size;
             continue;
         }
 
         // Process the lineOrder variable
f148537c
         if (check_header_variable(avctx, &buf, buf_end, "lineOrder", "lineOrder", 25, &variable_buffer_data_size) >= 0) {
b7ce3242
             if (!variable_buffer_data_size)
b4d0c3d9
                 return AVERROR_INVALIDDATA;
b7ce3242
 
             if (*buf) {
634c01bc
                 av_log(avctx, AV_LOG_ERROR, "Doesn't support this line order : %d\n", *buf);
b4d0c3d9
                 return AVERROR_PATCHWELCOME;
b7ce3242
             }
 
             buf += variable_buffer_data_size;
             continue;
         }
 
07df939a
         // Process the pixelAspectRatio variable
         if (check_header_variable(avctx, &buf, buf_end, "pixelAspectRatio", "float", 31, &variable_buffer_data_size) >= 0) {
             if (!variable_buffer_data_size)
b4d0c3d9
                 return AVERROR_INVALIDDATA;
07df939a
 
             avctx->sample_aspect_ratio = av_d2q(av_int2float(AV_RL32(buf)), 255);
 
             buf += variable_buffer_data_size;
             continue;
         }
 
b7ce3242
         // Process the compression variable
f148537c
         if (check_header_variable(avctx, &buf, buf_end, "compression", "compression", 29, &variable_buffer_data_size) >= 0) {
b7ce3242
             if (!variable_buffer_data_size)
b4d0c3d9
                 return AVERROR_INVALIDDATA;
b7ce3242
 
b040ffc8
             if (s->compr == -1)
                 s->compr = *buf;
             else
                 av_log(avctx, AV_LOG_WARNING, "Found more than one compression attribute\n");
b7ce3242
 
             buf += variable_buffer_data_size;
             continue;
         }
 
         // Check if there is enough bytes for a header
         if (buf_end - buf <= 9) {
634c01bc
             av_log(avctx, AV_LOG_ERROR, "Incomplete header\n");
b4d0c3d9
             return AVERROR_INVALIDDATA;
b7ce3242
         }
 
         // Process unknown variables
bd128e9b
         for (i = 0; i < 2; i++) {
b7ce3242
             // Skip variable name/type
f148537c
             while (++buf < buf_end)
b7ce3242
                 if (buf[0] == 0x0)
                     break;
         }
         buf++;
         // Skip variable length
         if (buf_end - buf >= 5) {
             variable_buffer_data_size = get_header_variable_length(&buf, buf_end);
             if (!variable_buffer_data_size) {
634c01bc
                 av_log(avctx, AV_LOG_ERROR, "Incomplete header\n");
b4d0c3d9
                 return AVERROR_INVALIDDATA;
b7ce3242
             }
             buf += variable_buffer_data_size;
         }
     }
 
a2dab751
     if (s->compr == -1) {
         av_log(avctx, AV_LOG_ERROR, "Missing compression attribute\n");
         return AVERROR_INVALIDDATA;
     }
 
b7ce3242
     if (buf >= buf_end) {
634c01bc
         av_log(avctx, AV_LOG_ERROR, "Incomplete frame\n");
b4d0c3d9
         return AVERROR_INVALIDDATA;
b7ce3242
     }
     buf++;
 
     switch (s->bits_per_color_id) {
     case 2: // 32-bit
     case 1: // 16-bit
d66b0cd5
         if (s->channel_offsets[3] >= 0)
ac627b3d
             avctx->pix_fmt = AV_PIX_FMT_RGBA64;
d66b0cd5
         else
ac627b3d
             avctx->pix_fmt = AV_PIX_FMT_RGB48;
b7ce3242
         break;
     // 8-bit
     case 0:
         av_log_missing_feature(avctx, "8-bit OpenEXR", 1);
b4d0c3d9
         return AVERROR_PATCHWELCOME;
b7ce3242
     default:
634c01bc
         av_log(avctx, AV_LOG_ERROR, "Unknown color format : %d\n", s->bits_per_color_id);
b4d0c3d9
         return AVERROR_INVALIDDATA;
b7ce3242
     }
 
74f3c53b
     switch (s->compr) {
     case EXR_RAW:
f7e26cca
     case EXR_RLE:
74f3c53b
     case EXR_ZIP1:
         scan_lines_per_block = 1;
         break;
     case EXR_ZIP16:
         scan_lines_per_block = 16;
         break;
01f76a77
     default:
         av_log(avctx, AV_LOG_ERROR, "Compression type %d is not supported\n", s->compr);
         return AVERROR_PATCHWELCOME;
74f3c53b
     }
 
b7ce3242
     if (s->picture.data[0])
10338073
         ff_thread_release_buffer(avctx, &s->picture);
b7ce3242
     if (av_image_check_size(w, h, 0, avctx))
b4d0c3d9
         return AVERROR_INVALIDDATA;
b7ce3242
 
     // Verify the xmin, xmax, ymin, ymax and xdelta before setting the actual image size
f148537c
     if (xmin > xmax || ymin > ymax || xdelta != xmax - xmin + 1 || xmax >= w || ymax >= h) {
634c01bc
         av_log(avctx, AV_LOG_ERROR, "Wrong sizing or missing size information\n");
b4d0c3d9
         return AVERROR_INVALIDDATA;
b7ce3242
     }
 
     if (w != avctx->width || h != avctx->height) {
         avcodec_set_dimensions(avctx, w, h);
     }
 
a51540d8
     desc = av_pix_fmt_desc_get(avctx->pix_fmt);
     bxmin = xmin * 2 * desc->nb_components;
     axmax = (avctx->width - (xmax + 1)) * 2 * desc->nb_components;
     out_line_size = avctx->width * 2 * desc->nb_components;
bc0ef29c
     scan_line_size = xdelta * current_channel_offset;
74f3c53b
     uncompressed_size = scan_line_size * scan_lines_per_block;
 
     if (s->compr != EXR_RAW) {
         av_fast_padded_malloc(&s->uncompressed_data, &s->uncompressed_size, uncompressed_size);
         av_fast_padded_malloc(&s->tmp, &s->tmp_size, uncompressed_size);
         if (!s->uncompressed_data || !s->tmp)
             return AVERROR(ENOMEM);
     }
 
10338073
     if ((ret = ff_thread_get_buffer(avctx, p)) < 0) {
634c01bc
         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
b4d0c3d9
         return ret;
b7ce3242
     }
 
     ptr    = p->data[0];
     stride = p->linesize[0];
 
     // Zero out the start if ymin is not 0
     for (y = 0; y < ymin; y++) {
a568a84e
         memset(ptr, 0, out_line_size);
b7ce3242
         ptr += stride;
     }
 
74f3c53b
     // Process the actual scan line blocks
     for (y = ymin; y <= ymax; y += scan_lines_per_block) {
b7ce3242
         uint16_t *ptr_x = (uint16_t *)ptr;
         if (buf_end - buf > 8) {
             /* Read the lineoffset from the line offset table and add 8 bytes
                to skip the coordinates and data size fields */
             const uint64_t line_offset = bytestream_get_le64(&buf) + 8;
74f3c53b
             int32_t data_size;
 
b7ce3242
             // Check if the buffer has the required bytes needed from the offset
74f3c53b
             if ((line_offset > buf_size) ||
                 (s->compr == EXR_RAW && line_offset > avpkt->size - xdelta * current_channel_offset) ||
                 (s->compr != EXR_RAW && line_offset > buf_size - (data_size = AV_RL32(avpkt->data + line_offset - 4)))) {
b7ce3242
                 // Line offset is probably wrong and not inside the buffer
                 av_log(avctx, AV_LOG_WARNING, "Line offset for line %d is out of reach setting it to black\n", y);
74f3c53b
                 for (i = 0; i < scan_lines_per_block && y + i <= ymax; i++, ptr += stride) {
                     ptr_x = (uint16_t *)ptr;
a568a84e
                     memset(ptr_x, 0, out_line_size);
74f3c53b
                 }
b7ce3242
             } else {
74f3c53b
                 const uint8_t *red_channel_buffer, *green_channel_buffer, *blue_channel_buffer, *alpha_channel_buffer = 0;
 
e4fff08f
                 if (scan_lines_per_block > 1)
                     uncompressed_size = scan_line_size * FFMIN(scan_lines_per_block, ymax - y + 1);
74f3c53b
                 if ((s->compr == EXR_ZIP1 || s->compr == EXR_ZIP16) && data_size < uncompressed_size) {
7543fd80
                     unsigned long dest_len = uncompressed_size;
 
                     if (uncompress(s->tmp, &dest_len, avpkt->data + line_offset, data_size) != Z_OK ||
                         dest_len != uncompressed_size) {
74f3c53b
                         av_log(avctx, AV_LOG_ERROR, "error during zlib decompression\n");
                         return AVERROR(EINVAL);
b7ce3242
                     }
f7e26cca
                 } else if (s->compr == EXR_RLE && data_size < uncompressed_size) {
                     if (rle_uncompress(avpkt->data + line_offset, data_size, s->tmp, uncompressed_size)) {
                         av_log(avctx, AV_LOG_ERROR, "error during rle decompression\n");
                         return AVERROR(EINVAL);
                     }
                 }
74f3c53b
 
f7e26cca
                 if (s->compr != EXR_RAW && data_size < uncompressed_size) {
74f3c53b
                     predictor(s->tmp, uncompressed_size);
                     reorder_pixels(s->tmp, s->uncompressed_data, uncompressed_size);
 
                     red_channel_buffer   = s->uncompressed_data + xdelta * s->channel_offsets[0];
                     green_channel_buffer = s->uncompressed_data + xdelta * s->channel_offsets[1];
                     blue_channel_buffer  = s->uncompressed_data + xdelta * s->channel_offsets[2];
                     if (s->channel_offsets[3] >= 0)
                         alpha_channel_buffer = s->uncompressed_data + xdelta * s->channel_offsets[3];
b7ce3242
                 } else {
74f3c53b
                     red_channel_buffer   = avpkt->data + line_offset + xdelta * s->channel_offsets[0];
                     green_channel_buffer = avpkt->data + line_offset + xdelta * s->channel_offsets[1];
                     blue_channel_buffer  = avpkt->data + line_offset + xdelta * s->channel_offsets[2];
                     if (s->channel_offsets[3] >= 0)
                         alpha_channel_buffer = avpkt->data + line_offset + xdelta * s->channel_offsets[3];
b7ce3242
                 }
 
74f3c53b
                 for (i = 0; i < scan_lines_per_block && y + i <= ymax; i++, ptr += stride) {
                     const uint8_t *r, *g, *b, *a;
 
                     r = red_channel_buffer;
                     g = green_channel_buffer;
                     b = blue_channel_buffer;
                     if (alpha_channel_buffer)
                         a = alpha_channel_buffer;
 
                     ptr_x = (uint16_t *)ptr;
 
                     // Zero out the start if xmin is not 0
a568a84e
                     memset(ptr_x, 0, bxmin);
a51540d8
                     ptr_x += xmin * desc->nb_components;
74f3c53b
                     if (s->bits_per_color_id == 2) {
                         // 32-bit
                         for (x = 0; x < xdelta; x++) {
                             *ptr_x++ = exr_flt2uint(bytestream_get_le32(&r));
                             *ptr_x++ = exr_flt2uint(bytestream_get_le32(&g));
                             *ptr_x++ = exr_flt2uint(bytestream_get_le32(&b));
                             if (alpha_channel_buffer)
                                 *ptr_x++ = exr_flt2uint(bytestream_get_le32(&a));
                         }
                     } else {
                         // 16-bit
                         for (x = 0; x < xdelta; x++) {
                             *ptr_x++ = exr_halflt2uint(bytestream_get_le16(&r));
                             *ptr_x++ = exr_halflt2uint(bytestream_get_le16(&g));
                             *ptr_x++ = exr_halflt2uint(bytestream_get_le16(&b));
                             if (alpha_channel_buffer)
                                 *ptr_x++ = exr_halflt2uint(bytestream_get_le16(&a));
                         }
                     }
 
                     // Zero out the end if xmax+1 is not w
a568a84e
                     memset(ptr_x, 0, axmax);
74f3c53b
 
                     red_channel_buffer   += scan_line_size;
                     green_channel_buffer += scan_line_size;
                     blue_channel_buffer  += scan_line_size;
                     if (alpha_channel_buffer)
                         alpha_channel_buffer += scan_line_size;
                 }
b7ce3242
             }
         }
     }
 
     // Zero out the end if ymax+1 is not h
f148537c
     for (y = ymax + 1; y < avctx->height; y++) {
a568a84e
         memset(ptr, 0, out_line_size);
b7ce3242
         ptr += stride;
     }
 
     *picture   = s->picture;
4012cd6c
     *got_frame = 1;
b7ce3242
 
     return buf_size;
 }
 
 static av_cold int decode_init(AVCodecContext *avctx)
 {
     EXRContext *s = avctx->priv_data;
74f3c53b
 
b7ce3242
     avcodec_get_frame_defaults(&s->picture);
     avctx->coded_frame = &s->picture;
74f3c53b
 
a2dab751
     s->compr = -1;
 
b7ce3242
     return 0;
 }
 
 static av_cold int decode_end(AVCodecContext *avctx)
 {
     EXRContext *s = avctx->priv_data;
74f3c53b
 
b7ce3242
     if (s->picture.data[0])
         avctx->release_buffer(avctx, &s->picture);
 
74f3c53b
     av_freep(&s->uncompressed_data);
     av_freep(&s->tmp);
 
b7ce3242
     return 0;
 }
 
 AVCodec ff_exr_decoder = {
     .name               = "exr",
     .type               = AVMEDIA_TYPE_VIDEO,
7a72695c
     .id                 = AV_CODEC_ID_EXR,
b7ce3242
     .priv_data_size     = sizeof(EXRContext),
     .init               = decode_init,
     .close              = decode_end,
     .decode             = decode_frame,
10338073
     .capabilities       = CODEC_CAP_DR1 | CODEC_CAP_FRAME_THREADS,
b7ce3242
     .long_name          = NULL_IF_CONFIG_SMALL("OpenEXR image"),
 };