• Home
  • Raw
  • Download

Lines Matching refs:FLAC__real

46 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L)  in FLAC__window_bartlett()
65 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett_hann()
71 …window[n] = (FLAC__real)(0.62f - 0.48f * fabs((float)n/(float)N-0.5f) - 0.38f * cos(2.0f * M_PI * … in FLAC__window_bartlett_hann()
74 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman()
80 …window[n] = (FLAC__real)(0.42f - 0.5f * cos(2.0f * M_PI * n / N) + 0.08f * cos(4.0f * M_PI * n / N… in FLAC__window_blackman()
84 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman_harris_4term_92db_sidelobe()
90 …window[n] = (FLAC__real)(0.35875f - 0.48829f * cos(2.0f * M_PI * n / N) + 0.14128f * cos(4.0f * M_… in FLAC__window_blackman_harris_4term_92db_sidelobe()
93 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L) in FLAC__window_connes()
102 window[n] = (FLAC__real)(k * k); in FLAC__window_connes()
106 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L) in FLAC__window_flattop()
112 …window[n] = (FLAC__real)(1.0f - 1.93f * cos(2.0f * M_PI * n / N) + 1.29f * cos(4.0f * M_PI * n / N… in FLAC__window_flattop()
115 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev) in FLAC__window_gauss()
123 window[n] = (FLAC__real)exp(-0.5f * k * k); in FLAC__window_gauss()
127 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L) in FLAC__window_hamming()
133 window[n] = (FLAC__real)(0.54f - 0.46f * cos(2.0f * M_PI * n / N)); in FLAC__window_hamming()
136 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_hann()
142 window[n] = (FLAC__real)(0.5f - 0.5f * cos(2.0f * M_PI * n / N)); in FLAC__window_hann()
145 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L) in FLAC__window_kaiser_bessel()
151 …window[n] = (FLAC__real)(0.402f - 0.498f * cos(2.0f * M_PI * n / N) + 0.098f * cos(4.0f * M_PI * n… in FLAC__window_kaiser_bessel()
154 void FLAC__window_nuttall(FLAC__real *window, const FLAC__int32 L) in FLAC__window_nuttall()
160 …window[n] = (FLAC__real)(0.3635819f - 0.4891775f*cos(2.0f*M_PI*n/N) + 0.1365995f*cos(4.0f*M_PI*n/N… in FLAC__window_nuttall()
163 void FLAC__window_rectangle(FLAC__real *window, const FLAC__int32 L) in FLAC__window_rectangle()
171 void FLAC__window_triangle(FLAC__real *window, const FLAC__int32 L) in FLAC__window_triangle()
189 void FLAC__window_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p) in FLAC__window_tukey()
203 window[n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * n / Np)); in FLAC__window_tukey()
204 window[L-Np-1+n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * (n+Np) / Np)); in FLAC__window_tukey()
210 …LAC__window_partial_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p, const FLAC_… in FLAC__window_partial_tukey()
228 window[n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * i / Np)); in FLAC__window_partial_tukey()
232 window[n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * i / Np)); in FLAC__window_partial_tukey()
238 …AC__window_punchout_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p, const FLAC_… in FLAC__window_punchout_tukey()
254 window[n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * i / Ns)); in FLAC__window_punchout_tukey()
258 window[n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * i / Ns)); in FLAC__window_punchout_tukey()
262 window[n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * i / Ne)); in FLAC__window_punchout_tukey()
266 window[n] = (FLAC__real)(0.5f - 0.5f * cos(M_PI * i / Ne)); in FLAC__window_punchout_tukey()
270 void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L) in FLAC__window_welch()
278 window[n] = (FLAC__real)(1.0f - k * k); in FLAC__window_welch()