cannam@89
|
1
|
cannam@89
|
2 /*
|
cannam@89
|
3 * PortAudio Portable Real-Time Audio Library
|
cannam@89
|
4 * Latest Version at: http://www.portaudio.com
|
cannam@89
|
5 *
|
cannam@89
|
6 * Copyright (c) 1999-2010 Phil Burk and Ross Bencina
|
cannam@89
|
7 *
|
cannam@89
|
8 * Permission is hereby granted, free of charge, to any person obtaining
|
cannam@89
|
9 * a copy of this software and associated documentation files
|
cannam@89
|
10 * (the "Software"), to deal in the Software without restriction,
|
cannam@89
|
11 * including without limitation the rights to use, copy, modify, merge,
|
cannam@89
|
12 * publish, distribute, sublicense, and/or sell copies of the Software,
|
cannam@89
|
13 * and to permit persons to whom the Software is furnished to do so,
|
cannam@89
|
14 * subject to the following conditions:
|
cannam@89
|
15 *
|
cannam@89
|
16 * The above copyright notice and this permission notice shall be
|
cannam@89
|
17 * included in all copies or substantial portions of the Software.
|
cannam@89
|
18 *
|
cannam@89
|
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
cannam@89
|
20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
cannam@89
|
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
cannam@89
|
22 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
cannam@89
|
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
cannam@89
|
24 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
cannam@89
|
25 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
cannam@89
|
26 */
|
cannam@89
|
27
|
cannam@89
|
28 /*
|
cannam@89
|
29 * The text above constitutes the entire PortAudio license; however,
|
cannam@89
|
30 * the PortAudio community also makes the following non-binding requests:
|
cannam@89
|
31 *
|
cannam@89
|
32 * Any person wishing to distribute modifications to the Software is
|
cannam@89
|
33 * requested to send the modifications to the original developer so that
|
cannam@89
|
34 * they can be incorporated into the canonical version. It is also
|
cannam@89
|
35 * requested that these non-binding requests be included along with the
|
cannam@89
|
36 * license above.
|
cannam@89
|
37 */
|
cannam@89
|
38
|
cannam@89
|
39 #ifndef _TEST_AUDIO_ANALYZER_H
|
cannam@89
|
40 #define _TEST_AUDIO_ANALYZER_H
|
cannam@89
|
41
|
cannam@89
|
42 /** Test the audio analyzer by itself without any PortAudio calls. */
|
cannam@89
|
43 int PaQa_TestAnalyzer( void );
|
cannam@89
|
44
|
cannam@89
|
45
|
cannam@89
|
46 #endif /* _TEST_AUDIO_ANALYZER_H */
|