diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2012-02-23 22:25:44 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-03-01 11:03:00 -0800 |
commit | cc412b71047ebf77c7e810c90b044f018a1c0c2d (patch) | |
tree | 3a6a59814da21cb4565eb4cbd71565411a79d200 /libavcodec/sbr.h | |
parent | 63c9de6469005974288f4e4d89fc79a590e38c06 (diff) | |
download | ffmpeg-cc412b71047ebf77c7e810c90b044f018a1c0c2d.tar.gz |
aacsbr: use a swap index for the Y matrix rather than copy buffers.
Signed-off-by: Alex Converse <alex.converse@gmail.com>
Diffstat (limited to 'libavcodec/sbr.h')
-rw-r--r-- | libavcodec/sbr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/sbr.h b/libavcodec/sbr.h index 7d06faddde..8da8e570f3 100644 --- a/libavcodec/sbr.h +++ b/libavcodec/sbr.h @@ -88,6 +88,7 @@ typedef struct { ///QMF values of the original signal float W[2][32][32][2]; ///QMF output of the HF adjustor + int Ypos; DECLARE_ALIGNED(16, float, Y)[2][38][64][2]; DECLARE_ALIGNED(16, float, g_temp)[42][48]; float q_temp[42][48]; |