#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <math.h>
#include "share/compat.h"
#include "FLAC/assert.h"
#include "FLAC/format.h"
#include "private/window.h"
#ifndef FLAC__INTEGER_ONLY_LIBRARY
#if defined(_MSC_VER)
#pragma warning ( disable : 4244 )
#endif
void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev)
{ … }
void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_nuttall(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_rectangle(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_triangle(FLAC__real *window, const FLAC__int32 L)
{ … }
void FLAC__window_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p)
{ … }
void FLAC__window_partial_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p, const FLAC__real start, const FLAC__real end)
{ … }
void FLAC__window_punchout_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p, const FLAC__real start, const FLAC__real end)
{ … }
void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L)
{ … }
#if defined(_MSC_VER)
#pragma warning ( default : 4244 )
#endif
#endif