Commit fedd90cf authored by michael's avatar michael

useless variable


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12869 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 95befd8a
...@@ -169,15 +169,11 @@ static void bastardized_rice_decompress(ALACContext *alac, ...@@ -169,15 +169,11 @@ static void bastardized_rice_decompress(ALACContext *alac,
if (x > 8) { /* RICE THRESHOLD */ if (x > 8) { /* RICE THRESHOLD */
/* use alternative encoding */ /* use alternative encoding */
int32_t value; x = get_bits(&alac->gb, readsamplesize);
value = get_bits(&alac->gb, readsamplesize);
/* mask value to readsamplesize size */ /* mask value to readsamplesize size */
if (readsamplesize != 32) if (readsamplesize != 32)
value &= (0xffffffff >> (32 - readsamplesize)); x &= (0xffffffff >> (32 - readsamplesize));
x = value;
} else { } else {
/* standard rice encoding */ /* standard rice encoding */
int extrabits; int extrabits;
......
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