1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-16 22:42:38 +02:00

Cosmetics: Fix some whitespace errors and indentation

This commit is contained in:
Mashiat Sarker Shakkhar
2012-01-27 01:14:12 -08:00
parent 6ca1016b3a
commit bfbd22f9f0

View File

@ -583,7 +583,7 @@ static int my_log2(unsigned int i)
{ {
unsigned int iLog2 = 0; unsigned int iLog2 = 0;
while ((i >> iLog2) > 1) while ((i >> iLog2) > 1)
iLog2++; iLog2++;
return iLog2; return iLog2;
} }
@ -598,7 +598,7 @@ static void decode_ac_filter(WmallDecodeCtx *s)
s->acfilter_scaling = get_bits(&s->gb, 4); s->acfilter_scaling = get_bits(&s->gb, 4);
for(i = 0; i < s->acfilter_order; i++) { for(i = 0; i < s->acfilter_order; i++) {
s->acfilter_coeffs[i] = get_bits(&s->gb, s->acfilter_scaling) + 1; s->acfilter_coeffs[i] = get_bits(&s->gb, s->acfilter_scaling) + 1;
} }
} }