From 73ae60d7df0404b06141faf9a6f62fa87d0a770c Mon Sep 17 00:00:00 2001 From: Martin Vignali Date: Sat, 25 Mar 2017 13:05:45 +0100 Subject: libavcodec/exr : cosmetics variable name rename tile variable to better follow ffmpeg coding style Signed-off-by: Michael Niedermayer --- libavcodec/exr.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'libavcodec') diff --git a/libavcodec/exr.c b/libavcodec/exr.c index b37f91fa3f..bf18ad0c79 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -1063,7 +1063,7 @@ static int decode_block(AVCodecContext *avctx, void *tdata, uint8_t *ptr; uint32_t data_size; uint64_t line, col = 0; - uint64_t tileX, tileY, tileLevelX, tileLevelY; + uint64_t tile_x, tile_y, tile_level_x, tile_level_y; const uint8_t *src; int axmax = (avctx->width - (s->xmax + 1)) * 2 * s->desc->nb_components; /* nb pixel to add at the right of the datawindow */ int bxmin = s->xmin * 2 * s->desc->nb_components; /* nb pixel to add at the left of the datawindow */ @@ -1081,16 +1081,16 @@ static int decode_block(AVCodecContext *avctx, void *tdata, src = buf + line_offset + 20; - tileX = AV_RL32(src - 20); - tileY = AV_RL32(src - 16); - tileLevelX = AV_RL32(src - 12); - tileLevelY = AV_RL32(src - 8); + tile_x = AV_RL32(src - 20); + tile_y = AV_RL32(src - 16); + tile_level_x = AV_RL32(src - 12); + tile_level_y = AV_RL32(src - 8); data_size = AV_RL32(src - 4); if (data_size <= 0 || data_size > buf_size) return AVERROR_INVALIDDATA; - if (tileLevelX || tileLevelY) { /* tile level, is not the full res level */ + if (tile_level_x || tile_level_y) { /* tile level, is not the full res level */ avpriv_report_missing_feature(s->avctx, "Subres tile before full res tile"); return AVERROR_PATCHWELCOME; } @@ -1100,15 +1100,15 @@ static int decode_block(AVCodecContext *avctx, void *tdata, return AVERROR_PATCHWELCOME; } - line = s->tile_attr.ySize * tileY; - col = s->tile_attr.xSize * tileX; + line = s->tile_attr.ySize * tile_y; + col = s->tile_attr.xSize * tile_x; if (line < s->ymin || line > s->ymax || col < s->xmin || col > s->xmax) return AVERROR_INVALIDDATA; - td->ysize = FFMIN(s->tile_attr.ySize, s->ydelta - tileY * s->tile_attr.ySize); - td->xsize = FFMIN(s->tile_attr.xSize, s->xdelta - tileX * s->tile_attr.xSize); + td->ysize = FFMIN(s->tile_attr.ySize, s->ydelta - tile_y * s->tile_attr.ySize); + td->xsize = FFMIN(s->tile_attr.xSize, s->xdelta - tile_x * s->tile_attr.xSize); if (col) { /* not the first tile of the line */ bxmin = 0; /* doesn't add pixel at the left of the datawindow */ -- cgit v1.2.3