summaryrefslogtreecommitdiff
path: root/libavcodec/alsdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-02 23:43:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-02 23:43:06 +0200
commitb2527d5d5a23127cb1676730a9210ea65cf82288 (patch)
tree96d7a3ecd334695da99f3293ec8c6743c8f9d960 /libavcodec/alsdec.c
parenta08efa2e3640ef0445032022c0b392376c58bd99 (diff)
Revert "alsdec: remove dead assignments"
This reverts commit 4ca6d206d1b5beea42c4290d2ee801aaf5cd31f0. The assignment is not dead, this should fix fate failures on BSD
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r--libavcodec/alsdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index 1179b39a30..e5208fc2bf 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -770,7 +770,7 @@ static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
int delta[8];
unsigned int k [8];
unsigned int b = av_clip((av_ceil_log2(bd->block_length) - 3) >> 1, 0, 5);
- unsigned int i;
+ unsigned int i = start;
// read most significant bits
unsigned int high;
@@ -781,7 +781,7 @@ static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
current_res = bd->raw_samples + start;
- for (sb = 0; sb < sub_blocks; sb++) {
+ for (sb = 0; sb < sub_blocks; sb++, i = 0) {
k [sb] = s[sb] > b ? s[sb] - b : 0;
delta[sb] = 5 - s[sb] + k[sb];