diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-11-26 09:59:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-11-26 09:59:10 +0000 |
commit | e137934fae1bd9f963f4f69881ae2b0c13143983 (patch) | |
tree | 0580b382d89142372e19ff116c463596260506c5 /libavcodec | |
parent | c73ce8e25913560d9f2712bd178133e552543bdf (diff) | |
download | ffmpeg-e137934fae1bd9f963f4f69881ae2b0c13143983.tar.gz |
cosmetics: K&R style, prettyprinting
Originally committed as revision 20619 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpegaudio_tablegen.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libavcodec/mpegaudio_tablegen.h b/libavcodec/mpegaudio_tablegen.h index 17a124faed..0113e36d7b 100644 --- a/libavcodec/mpegaudio_tablegen.h +++ b/libavcodec/mpegaudio_tablegen.h @@ -34,7 +34,7 @@ #define mpegaudio_tableinit() #include "libavcodec/mpegaudio_tables.h" #else -static int8_t table_4_3_exp[TABLE_4_3_SIZE]; +static int8_t table_4_3_exp[TABLE_4_3_SIZE]; static uint32_t table_4_3_value[TABLE_4_3_SIZE]; static uint32_t exp_table[512]; static uint32_t expval_table[512][16]; @@ -42,25 +42,25 @@ static uint32_t expval_table[512][16]; static void mpegaudio_tableinit(void) { int i, value, exponent; - for(i=1;i<TABLE_4_3_SIZE;i++) { - double value = i/4; + for (i = 1; i < TABLE_4_3_SIZE; i++) { + double value = i / 4; double f, fm; int e, m; - f = value * cbrtf(value) * pow(2, (i&3)*0.25); + f = value * cbrtf(value) * pow(2, (i & 3) * 0.25); fm = frexp(f, &e); - m = (uint32_t)(fm*(1LL<<31) + 0.5); - e+= FRAC_BITS - 31 + 5 - 100; + m = (uint32_t)(fm * (1LL << 31) + 0.5); + e += FRAC_BITS - 31 + 5 - 100; /* normalized to FRAC_BITS */ - table_4_3_value[i] = m; - table_4_3_exp[i] = -e; + table_4_3_value[i] = m; + table_4_3_exp[i] = -e; } - for(exponent=0; exponent<512; exponent++) { - for(value=0; value<16; value++) { - double f= (double)value * cbrtf(value) * pow(2, (exponent-400)*0.25 + FRAC_BITS + 5); - expval_table[exponent][value]= llrint(f); + for (exponent = 0; exponent < 512; exponent++) { + for (value = 0; value < 16; value++) { + double f = (double)value * cbrtf(value) * pow(2, (exponent - 400) * 0.25 + FRAC_BITS + 5); + expval_table[exponent][value] = llrint(f); } - exp_table[exponent]= expval_table[exponent][1]; + exp_table[exponent] = expval_table[exponent][1]; } } #endif /* CONFIG_HARDCODED_TABLES */ |