Commit a256445e authored by Ramiro Polla's avatar Ramiro Polla

mlpdec: Read context variable to local variable to make code cleaner.

Originally committed as revision 18615 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f95f6ab9
...@@ -849,6 +849,7 @@ static void rematrix_channels(MLPDecodeContext *m, unsigned int substr) ...@@ -849,6 +849,7 @@ static void rematrix_channels(MLPDecodeContext *m, unsigned int substr)
/* TODO: DSPContext? */ /* TODO: DSPContext? */
for (i = 0; i < s->blockpos; i++) { for (i = 0; i < s->blockpos; i++) {
int32_t bypassed_lsb = m->bypassed_lsbs[i][mat];
int32_t *samples = m->sample_buffer[i]; int32_t *samples = m->sample_buffer[i];
int64_t accum = 0; int64_t accum = 0;
...@@ -861,8 +862,7 @@ static void rematrix_channels(MLPDecodeContext *m, unsigned int substr) ...@@ -861,8 +862,7 @@ static void rematrix_channels(MLPDecodeContext *m, unsigned int substr)
index += index2; index += index2;
} }
samples[dest_ch] = ((accum >> 14) & mask) samples[dest_ch] = ((accum >> 14) & mask) + bypassed_lsb;
+ m->bypassed_lsbs[i][mat];
} }
} }
} }
......
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