Commit 89a3c60e authored by superdump's avatar superdump

The ff_sine_#[] should be aligned as they will commonly be used in dsputil

functions


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14767 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f75b4359
...@@ -48,11 +48,11 @@ void ff_kbd_window_init(float *window, float alpha, int n) ...@@ -48,11 +48,11 @@ void ff_kbd_window_init(float *window, float alpha, int n)
window[i] = sqrt(local_window[i] / sum); window[i] = sqrt(local_window[i] / sum);
} }
float ff_sine_128 [ 128]; DECLARE_ALIGNED(16, float, ff_sine_128 [ 128]);
float ff_sine_256 [ 256]; DECLARE_ALIGNED(16, float, ff_sine_256 [ 256]);
float ff_sine_512 [ 512]; DECLARE_ALIGNED(16, float, ff_sine_512 [ 512]);
float ff_sine_1024[1024]; DECLARE_ALIGNED(16, float, ff_sine_1024[1024]);
float ff_sine_2048[2048]; DECLARE_ALIGNED(16, float, ff_sine_2048[2048]);
float *ff_sine_windows[5] = { float *ff_sine_windows[5] = {
ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment