changeset 9505:bcef741a555a libavcodec

truehd: Simplify rematrix_channels() as per Michael's original review.
author ramiro
date Sat, 18 Apr 2009 19:39:07 +0000
parents dc643c3c285e
children 50feb15cbf2a
files mlpdec.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mlpdec.c	Sat Apr 18 18:54:30 2009 +0000
+++ b/mlpdec.c	Sat Apr 18 19:39:07 2009 +0000
@@ -848,6 +848,8 @@
         int matrix_noise_shift = s->matrix_noise_shift[mat];
         unsigned int dest_ch = s->matrix_out_ch[mat];
         int32_t mask = MSB_MASK(s->quant_step_size[dest_ch]);
+        int index  = s->num_primitive_matrices - mat;
+        int index2 = 2 * index + 1;
 
         /* TODO: DSPContext? */
 
@@ -858,9 +860,9 @@
                                   * s->matrix_coeff[mat][src_ch];
             }
             if (matrix_noise_shift) {
-                uint32_t index = s->num_primitive_matrices - mat;
-                index = (i * (index * 2 + 1) + index) & (m->access_unit_size_pow2 - 1);
+                index &= m->access_unit_size_pow2 - 1;
                 accum += m->noise_buffer[index] << (matrix_noise_shift + 7);
+                index += index2;
             }
             m->sample_buffer[i][dest_ch] = ((accum >> 14) & mask)
                                              + m->bypassed_lsbs[i][mat];