diff options
author | Mans Rullgard <mans@mansr.com> | 2012-01-12 00:17:45 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-01-28 14:56:18 +0000 |
commit | aac46e088d67a390489af686b846dea4987d8ffb (patch) | |
tree | 500b708b111678eb47bcf5fba78b0c64015ce150 /libavcodec/aacsbrdata.h | |
parent | 7181c4edee636beaf520344766ae5bd8a9d9d15a (diff) | |
download | ffmpeg-aac46e088d67a390489af686b846dea4987d8ffb.tar.gz |
aacsbr: move some simdable loops to function pointers
This prepares for assembly optimisations by moving the most
time-consuming loops to functions called through pointers
in a new context.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/aacsbrdata.h')
-rw-r--r-- | libavcodec/aacsbrdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacsbrdata.h b/libavcodec/aacsbrdata.h index 44d578f7fc..02491c3356 100644 --- a/libavcodec/aacsbrdata.h +++ b/libavcodec/aacsbrdata.h @@ -352,7 +352,7 @@ static DECLARE_ALIGNED(16, float, sbr_qmf_window_us)[640] = { 0.8537385600, }; -static const float sbr_noise_table[512][2] = { +const float ff_sbr_noise_table[512][2] = { {-0.99948153278296, -0.59483417516607}, { 0.97113454393991, -0.67528515225647}, { 0.14130051758487, -0.95090983575689}, {-0.47005496701697, -0.37340549728647}, { 0.80705063769351, 0.29653668284408}, {-0.38981478896926, 0.89572605717087}, |