OLD | NEW |
1 /* libFLAC - Free Lossless Audio Codec library | 1 /* libFLAC - Free Lossless Audio Codec library |
2 * Copyright (C) 2006,2007 Josh Coalson | 2 * Copyright (C) 2006-2009 Josh Coalson |
| 3 * Copyright (C) 2011-2014 Xiph.Org Foundation |
3 * | 4 * |
4 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
6 * are met: | 7 * are met: |
7 * | 8 * |
8 * - Redistributions of source code must retain the above copyright | 9 * - Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
10 * | 11 * |
11 * - Redistributions in binary form must reproduce the above copyright | 12 * - Redistributions in binary form must reproduce the above copyright |
12 * notice, this list of conditions and the following disclaimer in the | 13 * notice, this list of conditions and the following disclaimer in the |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L); | 58 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L); |
58 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L); | 59 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L); |
59 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__rea
l stddev); /* 0.0 < stddev <= 0.5 */ | 60 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__rea
l stddev); /* 0.0 < stddev <= 0.5 */ |
60 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L); | 61 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L); |
61 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L); | 62 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L); |
62 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L); | 63 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L); |
63 void FLAC__window_nuttall(FLAC__real *window, const FLAC__int32 L); | 64 void FLAC__window_nuttall(FLAC__real *window, const FLAC__int32 L); |
64 void FLAC__window_rectangle(FLAC__real *window, const FLAC__int32 L); | 65 void FLAC__window_rectangle(FLAC__real *window, const FLAC__int32 L); |
65 void FLAC__window_triangle(FLAC__real *window, const FLAC__int32 L); | 66 void FLAC__window_triangle(FLAC__real *window, const FLAC__int32 L); |
66 void FLAC__window_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__rea
l p); | 67 void FLAC__window_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__rea
l p); |
| 68 void FLAC__window_partial_tukey(FLAC__real *window, const FLAC__int32 L, const F
LAC__real p, const FLAC__real start, const FLAC__real end); |
| 69 void FLAC__window_punchout_tukey(FLAC__real *window, const FLAC__int32 L, const
FLAC__real p, const FLAC__real start, const FLAC__real end); |
67 void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L); | 70 void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L); |
68 | 71 |
69 #endif /* !defined FLAC__INTEGER_ONLY_LIBRARY */ | 72 #endif /* !defined FLAC__INTEGER_ONLY_LIBRARY */ |
70 | 73 |
71 #endif | 74 #endif |
OLD | NEW |