Commit 1f655c4f authored by Michael Niedermayer's avatar Michael Niedermayer

indent

Originally committed as revision 12875 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5eeba07e
...@@ -154,21 +154,21 @@ static inline int decode_scalar(GetBitContext *gb, int k, int limit, int readsam ...@@ -154,21 +154,21 @@ static inline int decode_scalar(GetBitContext *gb, int k, int limit, int readsam
/* use alternative encoding */ /* use alternative encoding */
x = get_bits(gb, readsamplesize); x = get_bits(gb, readsamplesize);
} else { } else {
if (k >= limit) if (k >= limit)
k = limit; k = limit;
if (k != 1) { if (k != 1) {
int extrabits = show_bits(gb, k); int extrabits = show_bits(gb, k);
/* multiply x by 2^k - 1, as part of their strange algorithm */ /* multiply x by 2^k - 1, as part of their strange algorithm */
x = (x << k) - x; x = (x << k) - x;
if (extrabits > 1) { if (extrabits > 1) {
x += extrabits - 1; x += extrabits - 1;
skip_bits(gb, k); skip_bits(gb, k);
} else } else
skip_bits(gb, k - 1); skip_bits(gb, k - 1);
} }
} }
return x; return x;
} }
...@@ -192,12 +192,12 @@ static void bastardized_rice_decompress(ALACContext *alac, ...@@ -192,12 +192,12 @@ static void bastardized_rice_decompress(ALACContext *alac,
int32_t x_modified; int32_t x_modified;
int32_t final_val; int32_t final_val;
/* standard rice encoding */ /* standard rice encoding */
int k; /* size of extra bits */ int k; /* size of extra bits */
/* read k, that is bits as is */ /* read k, that is bits as is */
k = 31 - count_leading_zeros((history >> 9) + 3); k = 31 - count_leading_zeros((history >> 9) + 3);
x= decode_scalar(&alac->gb, k, rice_kmodifier, readsamplesize); x= decode_scalar(&alac->gb, k, rice_kmodifier, readsamplesize);
x_modified = sign_modifier + x; x_modified = sign_modifier + x;
final_val = (x_modified + 1) / 2; final_val = (x_modified + 1) / 2;
...@@ -220,9 +220,9 @@ static void bastardized_rice_decompress(ALACContext *alac, ...@@ -220,9 +220,9 @@ static void bastardized_rice_decompress(ALACContext *alac,
sign_modifier = 1; sign_modifier = 1;
k = count_leading_zeros(history) + ((history + 16) >> 6 /* / 64 */) - 24; k = count_leading_zeros(history) + ((history + 16) >> 6 /* / 64 */) - 24;
block_size= decode_scalar(&alac->gb, k, rice_kmodifier, 16); block_size= decode_scalar(&alac->gb, k, rice_kmodifier, 16);
if (block_size > 0) { if (block_size > 0) {
memset(&output_buffer[output_count+1], 0, block_size * 4); memset(&output_buffer[output_count+1], 0, block_size * 4);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment