diff aacenc.h @ 11731:73f923159384 libavcodec

aacenc: Use exact values when quantizing, not fuzzy values. This requires us to code small escapes; we can't avoid it.
author alexc
date Fri, 14 May 2010 16:49:40 +0000
parents 98970e51365a
children
line wrap: on
line diff
--- a/aacenc.h	Fri May 14 16:49:30 2010 +0000
+++ b/aacenc.h	Fri May 14 16:49:40 2010 +0000
@@ -64,7 +64,7 @@
     int cur_channel;
     int last_frame;
     float lambda;
-    DECLARE_ALIGNED(16, int,   qcoefs)[96][2];   ///< quantized coefficients
+    DECLARE_ALIGNED(16, int,   qcoefs)[96];      ///< quantized coefficients
     DECLARE_ALIGNED(16, float, scoefs)[1024];    ///< scaled coefficients
 } AACEncContext;