From be0b4c70ec40d7f9ac8e416a4379d4a387421184 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 1 Oct 2013 20:39:23 +0200 Subject: atrac3: Replace a silly counter variable name with plain 'j' --- libavcodec/atrac3.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libavcodec/atrac3.c') diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index 1cb7b2bc4d..18562a6b85 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -417,7 +417,7 @@ static int decode_tonal_components(GetBitContext *gb, static int decode_gain_control(GetBitContext *gb, GainBlock *block, int num_bands) { - int i, cf, num_data; + int i, j, num_data; int *level, *loc; GainInfo *gain = block->g_block; @@ -428,10 +428,10 @@ static int decode_gain_control(GetBitContext *gb, GainBlock *block, level = gain[i].lev_code; loc = gain[i].loc_code; - for (cf = 0; cf < gain[i].num_gain_data; cf++) { - level[cf] = get_bits(gb, 4); - loc [cf] = get_bits(gb, 5); - if (cf && loc[cf] <= loc[cf - 1]) + for (j = 0; j < gain[i].num_gain_data; j++) { + level[j] = get_bits(gb, 4); + loc[j] = get_bits(gb, 5); + if (j && loc[j] <= loc[j - 1]) return AVERROR_INVALIDDATA; } } -- cgit v1.2.3