annotate src/portaudio/README.txt @ 131:cd8a866e0905

Debug build of Rubber Band Library
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 19 Oct 2016 17:32:56 +0100
parents 8a15ff55d9af
children
rev   line source
cannam@89 1 README for PortAudio
cannam@89 2
cannam@89 3 /*
cannam@89 4 * PortAudio Portable Real-Time Audio Library
cannam@89 5 * Latest Version at: http://www.portaudio.com
cannam@89 6 *
cannam@89 7 * Copyright (c) 1999-2008 Phil Burk and Ross Bencina
cannam@89 8 *
cannam@89 9 * Permission is hereby granted, free of charge, to any person obtaining
cannam@89 10 * a copy of this software and associated documentation files
cannam@89 11 * (the "Software"), to deal in the Software without restriction,
cannam@89 12 * including without limitation the rights to use, copy, modify, merge,
cannam@89 13 * publish, distribute, sublicense, and/or sell copies of the Software,
cannam@89 14 * and to permit persons to whom the Software is furnished to do so,
cannam@89 15 * subject to the following conditions:
cannam@89 16 *
cannam@89 17 * The above copyright notice and this permission notice shall be
cannam@89 18 * included in all copies or substantial portions of the Software.
cannam@89 19 *
cannam@89 20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
cannam@89 21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
cannam@89 22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
cannam@89 23 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
cannam@89 24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
cannam@89 25 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
cannam@89 26 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@89 27 */
cannam@89 28
cannam@89 29 /*
cannam@89 30 * The text above constitutes the entire PortAudio license; however,
cannam@89 31 * the PortAudio community also makes the following non-binding requests:
cannam@89 32 *
cannam@89 33 * Any person wishing to distribute modifications to the Software is
cannam@89 34 * requested to send the modifications to the original developer so that
cannam@89 35 * they can be incorporated into the canonical version. It is also
cannam@89 36 * requested that these non-binding requests be included along with the
cannam@89 37 * license above.
cannam@89 38 */
cannam@89 39
cannam@89 40
cannam@89 41 PortAudio is a portable audio I/O library designed for cross-platform
cannam@89 42 support of audio. It uses either a callback mechanism to request audio
cannam@89 43 processing, or blocking read/write calls to buffer data between the
cannam@89 44 native audio subsystem and the client. Audio can be processed in various
cannam@89 45 formats, including 32 bit floating point, and will be converted to the
cannam@89 46 native format internally.
cannam@89 47
cannam@89 48 Documentation:
cannam@89 49 Documentation is available in "/doc/html/index.html"
cannam@89 50 Also see "src/common/portaudio.h" for API spec.
cannam@89 51 Also see http://www.portaudio.com/docs/
cannam@89 52 And see the "test/" directory for many examples of usage
cannam@89 53 (we suggest "test/patest_saw.c" for an example)
cannam@89 54
cannam@89 55 For information on compiling programs with PortAudio, please see the
cannam@89 56 tutorial at:
cannam@89 57
cannam@89 58 http://portaudio.com/trac/wiki/TutorialDir/TutorialStart
cannam@89 59
cannam@89 60 We have an active mailing list for user and developer discussions.
cannam@89 61 Please feel free to join. See http://www.portaudio.com for details.
cannam@89 62
cannam@89 63
cannam@89 64 Important Files and Folders:
cannam@89 65 include/portaudio.h = header file for PortAudio API. Specifies API.
cannam@89 66 src/common/ = platform independant code, host independant
cannam@89 67 code for all implementations.
cannam@89 68 src/os = os specific (but host api neutral) code
cannam@89 69 src/hostapi = implementations for different host apis
cannam@89 70
cannam@89 71
cannam@89 72 Host API Implementations:
cannam@89 73 src/hostapi/alsa = Advanced Linux Sound Architecture (ALSA)
cannam@89 74 src/hostapi/asihpi = AudioScience HPI
cannam@89 75 src/hostapi/asio = ASIO for Windows and Macintosh
cannam@89 76 src/hostapi/coreaudio = Macintosh Core Audio for OS X
cannam@89 77 src/hostapi/dsound = Windows Direct Sound
cannam@89 78 src/hostapi/jack = JACK Audio Connection Kit
cannam@89 79 src/hostapi/oss = Unix Open Sound System (OSS)
cannam@89 80 src/hostapi/wasapi = Windows Vista WASAPI
cannam@89 81 src/hostapi/wdmks = Windows WDM Kernel Streaming
cannam@89 82 src/hostapi/wmme = Windows MultiMedia Extensions (MME)
cannam@89 83
cannam@89 84
cannam@89 85 Test Programs:
cannam@89 86 test/pa_fuzz.c = guitar fuzz box
cannam@89 87 test/pa_devs.c = print a list of available devices
cannam@89 88 test/pa_minlat.c = determine minimum latency for your machine
cannam@89 89 test/paqa_devs.c = self test that opens all devices
cannam@89 90 test/paqa_errs.c = test error detection and reporting
cannam@89 91 test/patest_clip.c = hear a sine wave clipped and unclipped
cannam@89 92 test/patest_dither.c = hear effects of dithering (extremely subtle)
cannam@89 93 test/patest_pink.c = fun with pink noise
cannam@89 94 test/patest_record.c = record and playback some audio
cannam@89 95 test/patest_maxsines.c = how many sine waves can we play? Tests Pa_GetCPULoad().
cannam@89 96 test/patest_sine.c = output a sine wave in a simple PA app
cannam@89 97 test/patest_sync.c = test syncronization of audio and video
cannam@89 98 test/patest_wire.c = pass input to output, wire simulator