Browse Source

exr: reset compression in decode_frame()

This fixes decoding of images if compression changes.
Regression since b040ffc84c.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n1.2
Paul B Mahol 13 years ago
parent
commit
a3d890527e
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavcodec/exr.c

+ 1
- 2
libavcodec/exr.c View File

@@ -258,6 +258,7 @@ static int decode_frame(AVCodecContext *avctx,
s->channel_offsets[2] = -1;
s->channel_offsets[3] = -1;
s->bits_per_color_id = -1;
s->compr = -1;

if (buf_size < 10) {
av_log(avctx, AV_LOG_ERROR, "Too short header to parse\n");
@@ -645,8 +646,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
avcodec_get_frame_defaults(&s->picture);
avctx->coded_frame = &s->picture;

s->compr = -1;

return 0;
}



Loading…
Cancel
Save