diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2012-01-05 20:26:33 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-01-08 17:40:55 -0800 |
commit | 39df0c434c76aa6a6decccb969dfa51468440823 (patch) | |
tree | b5daf30857a3e42ad4f8579f312b190c2581fa58 /libavcodec/mpegaudiodec.c | |
parent | 06677d0dd9d3c656665566e585e9ca6de815f247 (diff) | |
download | ffmpeg-39df0c434c76aa6a6decccb969dfa51468440823.tar.gz |
mpegaudiodec: optimized iMDCT transform
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-rw-r--r-- | libavcodec/mpegaudiodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 70c5f76381..6a06afa680 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -58,7 +58,7 @@ typedef struct GranuleDef { int preflag; int short_start, long_end; /* long/short band indexes */ uint8_t scale_factors[40]; - INTFLOAT sb_hybrid[SBLIMIT * 18]; /* 576 samples */ + DECLARE_ALIGNED(16, INTFLOAT, sb_hybrid)[SBLIMIT * 18]; /* 576 samples */ } GranuleDef; typedef struct MPADecodeContext { |