[FFmpeg-soc] [soc]: r3646 - nellyenc/nellymoserenc.c

bwolowiec subversion at mplayerhq.hu
Wed Aug 27 13:31:22 CEST 2008


Author: bwolowiec
Date: Wed Aug 27 13:31:22 2008
New Revision: 3646

Log:
Fix prev patch. Add ()


Modified:
   nellyenc/nellymoserenc.c

Modified: nellyenc/nellymoserenc.c
==============================================================================
--- nellyenc/nellymoserenc.c	(original)
+++ nellyenc/nellymoserenc.c	Wed Aug 27 13:31:22 2008
@@ -227,8 +227,8 @@ static void encode_block(NellyMoserEncod
             if (s->bits[i] > 0) {
                 coeff = s->mdct_out[block * NELLY_BUF_LEN + i];
                 find_best_value(coeff,
-                                ff_nelly_dequantization_table + (1 << s->bits[i]) - 1,
-                                1 << s->bits[i], best_idx);
+                                (ff_nelly_dequantization_table + (1 << s->bits[i]) - 1),
+                                (1 << s->bits[i]), best_idx);
                 put_bits(&pb, s->bits[i], best_idx);
             }
         }



More information about the FFmpeg-soc mailing list