Skip to content
Snippets Groups Projects
Commit bfbd22f9 authored by Mashiat Sarker Shakkhar's avatar Mashiat Sarker Shakkhar
Browse files

Cosmetics: Fix some whitespace errors and indentation

parent 6ca1016b
No related branches found
No related tags found
No related merge requests found
...@@ -224,7 +224,7 @@ typedef struct WmallDecodeCtx { ...@@ -224,7 +224,7 @@ typedef struct WmallDecodeCtx {
WmallChannelCtx channel[WMALL_MAX_CHANNELS]; ///< per channel data WmallChannelCtx channel[WMALL_MAX_CHANNELS]; ///< per channel data
// WMA lossless // WMA lossless
uint8_t do_arith_coding; uint8_t do_arith_coding;
uint8_t do_ac_filter; uint8_t do_ac_filter;
uint8_t do_inter_ch_decorr; uint8_t do_inter_ch_decorr;
...@@ -583,7 +583,7 @@ static int my_log2(unsigned int i) ...@@ -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) ...@@ -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;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment