1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-16 03:44:15 +02:00

avcodec/exr: remove unneed scanline_size var

This commit is contained in:
Martin Vignali 2016-06-04 14:18:48 +02:00 committed by Paul B Mahol
parent 42297d8419
commit 16107aeaf3

View File

@ -122,7 +122,6 @@ typedef struct EXRContext {
uint32_t ymax, ymin;
uint32_t xdelta, ydelta;
uint64_t scan_line_size;
int scan_lines_per_block;
EXRTileAttribute tile_attr; /* header data attribute of tile */
@ -1524,8 +1523,6 @@ static int decode_header(EXRContext *s)
}
}
s->scan_line_size = s->xdelta * s->current_channel_offset;
if (bytestream2_get_bytes_left(&s->gb) <= 0) {
av_log(s->avctx, AV_LOG_ERROR, "Incomplete frame.\n");
return AVERROR_INVALIDDATA;