typedef float fftsample_t;
-#define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
-#define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v)
#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
struct fft_complex {
freep(&ctx->exptab);
}
-DECLARE_ALIGNED(16, float, ff_sine_128[128]);
-DECLARE_ALIGNED(16, float, ff_sine_256[256]);
-DECLARE_ALIGNED(16, float, ff_sine_512[512]);
-DECLARE_ALIGNED(16, float, ff_sine_1024[1024]);
-DECLARE_ALIGNED(16, float, ff_sine_2048[2048]);
-DECLARE_ALIGNED(16, float, ff_sine_4096[4096]);
-
-float *ff_sine_windows[6] = {
- ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024,
- ff_sine_2048, ff_sine_4096
-};
-
-// Generate a sine window.
-void sine_window_init(float *window, int n)
-{
- int i;
-
- for (i = 0; i < n; i++)
- window[i] = sinf((i + 0.5) * (M_PI / (2.0 * n)));
-}
-
/**
* Init MDCT or IMDCT computation.
*/
struct mdct_context;
-float *ff_sine_windows[6];
-void sine_window_init(float *window, int n);
int imdct_init(int nbits, int inverse, struct mdct_context **result);
void imdct(struct mdct_context *s, float *output, const float *input);
void imdct_end(struct mdct_context *s);
int read_asf_header(char *buf, int loaded, struct asf_header_info *ahi);
#define M_PI 3.14159265358979323846 /* pi */
#define WMA_FRAME_SKIP 31
+#define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
+#define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v)
#define VLCBITS 9
#define VLCMAX ((22+VLCBITS-1)/VLCBITS)
+DECLARE_ALIGNED(16, float, ff_sine_128[128]);
+DECLARE_ALIGNED(16, float, ff_sine_256[256]);
+DECLARE_ALIGNED(16, float, ff_sine_512[512]);
+DECLARE_ALIGNED(16, float, ff_sine_1024[1024]);
+DECLARE_ALIGNED(16, float, ff_sine_2048[2048]);
+DECLARE_ALIGNED(16, float, ff_sine_4096[4096]);
+
+static float *ff_sine_windows[6] = {
+ ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024,
+ ff_sine_2048, ff_sine_4096
+};
+
+/* Generate a sine window. */
+static void sine_window_init(float *window, int n)
+{
+ int i;
+
+ for (i = 0; i < n; i++)
+ window[i] = sinf((i + 0.5) * (M_PI / (2.0 * n)));
+}
+
static int wmadec_cleanup(struct private_wmadec_data *s)
{
int i;