Lines Matching refs:FLAC__int32
46 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L)
48 const FLAC__int32 N = L - 1;
49 FLAC__int32 n;
65 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L)
67 const FLAC__int32 N = L - 1;
68 FLAC__int32 n;
74 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L)
76 const FLAC__int32 N = L - 1;
77 FLAC__int32 n;
84 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L)
86 const FLAC__int32 N = L - 1;
87 FLAC__int32 n;
93 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L)
95 const FLAC__int32 N = L - 1;
97 FLAC__int32 n;
106 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L)
108 const FLAC__int32 N = L - 1;
109 FLAC__int32 n;
115 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev)
117 const FLAC__int32 N = L - 1;
119 FLAC__int32 n;
127 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L)
129 const FLAC__int32 N = L - 1;
130 FLAC__int32 n;
136 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L)
138 const FLAC__int32 N = L - 1;
139 FLAC__int32 n;
145 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L)
147 const FLAC__int32 N = L - 1;
148 FLAC__int32 n;
154 void FLAC__window_nuttall(FLAC__real *window, const FLAC__int32 L)
156 const FLAC__int32 N = L - 1;
157 FLAC__int32 n;
163 void FLAC__window_rectangle(FLAC__real *window, const FLAC__int32 L)
165 FLAC__int32 n;
171 void FLAC__window_triangle(FLAC__real *window, const FLAC__int32 L)
173 FLAC__int32 n;
189 void FLAC__window_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p)
196 const FLAC__int32 Np = (FLAC__int32)(p / 2.0f * L) - 1;
197 FLAC__int32 n;
210 void FLAC__window_partial_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p, const FLAC__real start, const FLAC__real end)
212 const FLAC__int32 start_n = (FLAC__int32)(start * L);
213 const FLAC__int32 end_n = (FLAC__int32)(end * L);
214 const FLAC__int32 N = end_n - start_n;
215 FLAC__int32 Np, n, i;
223 Np = (FLAC__int32)(p / 2.0f * N);
238 void FLAC__window_punchout_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p, const FLAC__real start, const FLAC__real end)
240 const FLAC__int32 start_n = (FLAC__int32)(start * L);
241 const FLAC__int32 end_n = (FLAC__int32)(end * L);
242 FLAC__int32 Ns, Ne, n, i;
250 Ns = (FLAC__int32)(p / 2.0f * start_n);
251 Ne = (FLAC__int32)(p / 2.0f * (L - end_n));
270 void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L)
272 const FLAC__int32 N = L - 1;
274 FLAC__int32 n;