Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Vignali <martin.vignali@gmail.com>2016-04-07 12:17:18 +0300
committerPaul B Mahol <onemda@gmail.com>2016-04-10 20:24:15 +0300
commit2dd7b46132e2801ef34fe1b5c27e0113cdcfa2f9 (patch)
treedb9482c0ca8a0cc972fe0bb2c7891058d390148b /libavcodec/exr.c
parent7e1e25c2dced3e76bb4d35ad082f2abf6ae41c4c (diff)
avcodec/exr: fix channel detection
Diffstat (limited to 'libavcodec/exr.c')
-rw-r--r--libavcodec/exr.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/libavcodec/exr.c b/libavcodec/exr.c
index 27631261f1..9dd2ee961a 100644
--- a/libavcodec/exr.c
+++ b/libavcodec/exr.c
@@ -1382,15 +1382,17 @@ static int decode_header(EXRContext *s)
return AVERROR_PATCHWELCOME;
}
- if (channel_index >= 0) {
- if (s->pixel_type != EXR_UNKNOWN &&
- s->pixel_type != current_pixel_type) {
- av_log(s->avctx, AV_LOG_ERROR,
- "RGB channels not of the same depth.\n");
- return AVERROR_INVALIDDATA;
+ if (s->channel_offsets[channel_index] == -1){/* channel have not been previously assign */
+ if (channel_index >= 0) {
+ if (s->pixel_type != EXR_UNKNOWN &&
+ s->pixel_type != current_pixel_type) {
+ av_log(s->avctx, AV_LOG_ERROR,
+ "RGB channels not of the same depth.\n");
+ return AVERROR_INVALIDDATA;
+ }
+ s->pixel_type = current_pixel_type;
+ s->channel_offsets[channel_index] = s->current_channel_offset;
}
- s->pixel_type = current_pixel_type;
- s->channel_offsets[channel_index] = s->current_channel_offset;
}
s->channels = av_realloc(s->channels,