summaryrefslogtreecommitdiffstats
path: root/libavcodec/exr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-13 14:56:22 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 15:05:40 +0100
commit7ff3bfd584a732e6b8b601e13d171a0f0200c151 (patch)
treed56af10814e40453d955d8057044341988b46241 /libavcodec/exr.c
parentc31f07574dbca71cfcc316edcfff3425e60ef245 (diff)
downloadffmpeg-streaming-7ff3bfd584a732e6b8b601e13d171a0f0200c151.zip
ffmpeg-streaming-7ff3bfd584a732e6b8b601e13d171a0f0200c151.tar.gz
exr: silence warning "libavcodec/exr.c:351:9: warning: variable ret set but not used"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/exr.c')
-rw-r--r--libavcodec/exr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/exr.c b/libavcodec/exr.c
index cc0995c..9b93e3f 100644
--- a/libavcodec/exr.c
+++ b/libavcodec/exr.c
@@ -348,7 +348,8 @@ static int decode_block(AVCodecContext *avctx, void *tdata,
const uint8_t *src;
int axmax = (avctx->width - (s->xmax + 1)) * 2 * s->desc->nb_components;
int bxmin = s->xmin * 2 * s->desc->nb_components;
- int ret, i, x, buf_size = s->buf_size;
+ int i, x, buf_size = s->buf_size;
+ int av_unused ret;
line_offset = AV_RL64(s->table + jobnr * 8);
// Check if the buffer has the required bytes needed from the offset
OpenPOWER on IntegriCloud