|
Chris@4
|
1 README for PABLIO
|
|
Chris@4
|
2 Portable Audio Blocking I/O Library
|
|
Chris@4
|
3 Author: Phil Burk
|
|
Chris@4
|
4
|
|
Chris@55
|
5 PABLIO is a simplified interface to PortAudio that provides
|
|
Chris@4
|
6 read/write style blocking I/O.
|
|
Chris@4
|
7
|
|
Chris@55
|
8 PABLIO is DEPRECATED. We recommend that people use the blocking I/O calls
|
|
Chris@55
|
9 that are now part of the PortAudio API. These are Pa_ReadStream() and
|
|
Chris@55
|
10 Pa_WriteStream().
|
|
Chris@55
|
11
|
|
Chris@55
|
12 http://portaudio.com/docs/v19-doxydocs/blocking_read_write.html
|
|
Chris@4
|
13
|
|
Chris@4
|
14 /*
|
|
Chris@4
|
15 * More information on PortAudio at: http://www.portaudio.com
|
|
Chris@4
|
16 * Copyright (c) 1999-2000 Phil Burk
|
|
Chris@4
|
17 *
|
|
Chris@4
|
18 * Permission is hereby granted, free of charge, to any person obtaining
|
|
Chris@4
|
19 * a copy of this software and associated documentation files
|
|
Chris@4
|
20 * (the "Software"), to deal in the Software without restriction,
|
|
Chris@4
|
21 * including without limitation the rights to use, copy, modify, merge,
|
|
Chris@4
|
22 * publish, distribute, sublicense, and/or sell copies of the Software,
|
|
Chris@4
|
23 * and to permit persons to whom the Software is furnished to do so,
|
|
Chris@4
|
24 * subject to the following conditions:
|
|
Chris@4
|
25 *
|
|
Chris@4
|
26 * The above copyright notice and this permission notice shall be
|
|
Chris@4
|
27 * included in all copies or substantial portions of the Software.
|
|
Chris@4
|
28 *
|
|
Chris@4
|
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
Chris@4
|
30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
Chris@4
|
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
Chris@4
|
32 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
|
Chris@4
|
33 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
Chris@4
|
34 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
Chris@4
|
35 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
Chris@4
|
36 */
|
|
Chris@4
|
37
|
|
Chris@4
|
38 /*
|
|
Chris@4
|
39 * The text above constitutes the entire PortAudio license; however,
|
|
Chris@4
|
40 * the PortAudio community also makes the following non-binding requests:
|
|
Chris@4
|
41 *
|
|
Chris@4
|
42 * Any person wishing to distribute modifications to the Software is
|
|
Chris@4
|
43 * requested to send the modifications to the original developer so that
|
|
Chris@4
|
44 * they can be incorporated into the canonical version. It is also
|
|
Chris@4
|
45 * requested that these non-binding requests be included along with the
|
|
Chris@4
|
46 * license above.
|
|
Chris@4
|
47 */
|
|
Chris@4
|
48
|
|
Chris@4
|
49
|