summaryrefslogtreecommitdiff
path: root/libavcodec/sbr.h
diff options
context:
space:
mode:
authorKieran Kunhya <kierank@ob-encoder.com>2012-04-20 14:49:30 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2012-05-21 17:13:05 -0400
commit5ff01259a8b558ba84066125b41832121f2f5864 (patch)
tree49d4e5844c59485037d26f59d3465f4f4c00c068 /libavcodec/sbr.h
parentafeb3590fc5ff01d43b1a1be9df8fac64431ff9e (diff)
Convert vector_fmul range of functions to YASM and add AVX versions
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
Diffstat (limited to 'libavcodec/sbr.h')
-rw-r--r--libavcodec/sbr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/sbr.h b/libavcodec/sbr.h
index 23534b16ec..228b158e10 100644
--- a/libavcodec/sbr.h
+++ b/libavcodec/sbr.h
@@ -78,8 +78,8 @@ typedef struct {
* @name State variables
* @{
*/
- DECLARE_ALIGNED(16, float, synthesis_filterbank_samples)[SBR_SYNTHESIS_BUF_SIZE];
- DECLARE_ALIGNED(16, float, analysis_filterbank_samples) [1312];
+ DECLARE_ALIGNED(32, float, synthesis_filterbank_samples)[SBR_SYNTHESIS_BUF_SIZE];
+ DECLARE_ALIGNED(32, float, analysis_filterbank_samples) [1312];
int synthesis_filterbank_samples_offset;
///l_APrev and l_A
int e_a[2];