summaryrefslogtreecommitdiff
path: root/libavcodec/alsdec.c
diff options
context:
space:
mode:
authorThilo Borgmann <thilo.borgmann@googlemail.com>2010-02-19 08:07:02 +0000
committerThilo Borgmann <thilo.borgmann@googlemail.com>2010-02-19 08:07:02 +0000
commita8c09ff2d864b5dfbf25f21193a111cdba0c2a10 (patch)
treea268510e5a69647b6c4b70f92b9f5b88ecb4562e /libavcodec/alsdec.c
parentf4f2160880155f3b69e033ef6d1ae7c5c9181455 (diff)
Do sequential bit reading outside of []-operators.
Originally committed as revision 21892 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r--libavcodec/alsdec.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index 59d1bd9827..91b31d11a4 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -703,10 +703,14 @@ static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
*bd->use_ltp = get_bits1(gb);
if (*bd->use_ltp) {
+ int r, c;
+
bd->ltp_gain[0] = decode_rice(gb, 1) << 3;
bd->ltp_gain[1] = decode_rice(gb, 2) << 3;
- bd->ltp_gain[2] = ltp_gain_values[get_unary(gb, 0, 4)][get_bits(gb, 2)];
+ r = get_unary(gb, 0, 4);
+ c = get_bits(gb, 2);
+ bd->ltp_gain[2] = ltp_gain_values[r][c];
bd->ltp_gain[3] = decode_rice(gb, 2) << 3;
bd->ltp_gain[4] = decode_rice(gb, 1) << 3;