From 4d986b71721ddf26ab8563b933ec8dd3ec88e59c Mon Sep 17 00:00:00 2001 From: Alex Converse Date: Fri, 14 May 2010 16:49:40 +0000 Subject: aacenc: Use exact values when quantizing, not fuzzy values. This requires us to code small escapes; we can't avoid it. Originally committed as revision 23135 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aacenc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/aacenc.h') diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index e99be98048..86c68d3e16 100644 --- a/libavcodec/aacenc.h +++ b/libavcodec/aacenc.h @@ -64,7 +64,7 @@ typedef struct AACEncContext { 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; -- cgit v1.2.3