diff --git a/src/libFLAC/window.c b/src/libFLAC/window.c index 6acf66aa..edbbe414 100644 --- a/src/libFLAC/window.c +++ b/src/libFLAC/window.c @@ -232,6 +232,7 @@ void FLAC__window_partial_tukey(FLAC__real *window, const FLAC__int32 L, const F for (; n < L; n++) window[n] = 0.0f; } + void FLAC__window_punchout_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p, const FLAC__real start, const FLAC__real end) { const FLAC__int32 start_n = (FLAC__int32)(start * L);