Chris@4: #ifndef PA_LINUX_ALSA_H Chris@4: #define PA_LINUX_ALSA_H Chris@4: Chris@4: /* Chris@4: * $Id: pa_linux_alsa.h 1597 2011-02-11 00:15:51Z dmitrykos $ Chris@4: * PortAudio Portable Real-Time Audio Library Chris@4: * ALSA-specific extensions Chris@4: * Chris@4: * Copyright (c) 1999-2000 Ross Bencina and Phil Burk Chris@4: * Chris@4: * Permission is hereby granted, free of charge, to any person obtaining Chris@4: * a copy of this software and associated documentation files Chris@4: * (the "Software"), to deal in the Software without restriction, Chris@4: * including without limitation the rights to use, copy, modify, merge, Chris@4: * publish, distribute, sublicense, and/or sell copies of the Software, Chris@4: * and to permit persons to whom the Software is furnished to do so, Chris@4: * subject to the following conditions: Chris@4: * Chris@4: * The above copyright notice and this permission notice shall be Chris@4: * included in all copies or substantial portions of the Software. Chris@4: * Chris@4: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, Chris@4: * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF Chris@4: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. Chris@4: * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR Chris@4: * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF Chris@4: * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION Chris@4: * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Chris@4: */ Chris@4: Chris@4: /* Chris@4: * The text above constitutes the entire PortAudio license; however, Chris@4: * the PortAudio community also makes the following non-binding requests: Chris@4: * Chris@4: * Any person wishing to distribute modifications to the Software is Chris@4: * requested to send the modifications to the original developer so that Chris@4: * they can be incorporated into the canonical version. It is also Chris@4: * requested that these non-binding requests be included along with the Chris@4: * license above. Chris@4: */ Chris@4: Chris@4: /** @file Chris@4: * @ingroup public_header Chris@4: * @brief ALSA-specific PortAudio API extension header file. Chris@4: */ Chris@4: Chris@4: #include "portaudio.h" Chris@4: Chris@4: #ifdef __cplusplus Chris@4: extern "C" { Chris@4: #endif Chris@4: Chris@4: typedef struct PaAlsaStreamInfo Chris@4: { Chris@4: unsigned long size; Chris@4: PaHostApiTypeId hostApiType; Chris@4: unsigned long version; Chris@4: Chris@4: const char *deviceString; Chris@4: } Chris@4: PaAlsaStreamInfo; Chris@4: Chris@4: /** Initialize host API specific structure, call this before setting relevant attributes. */ Chris@4: void PaAlsa_InitializeStreamInfo( PaAlsaStreamInfo *info ); Chris@4: Chris@4: /** Instruct whether to enable real-time priority when starting the audio thread. Chris@4: * Chris@4: * If this is turned on by the stream is started, the audio callback thread will be created Chris@4: * with the FIFO scheduling policy, which is suitable for realtime operation. Chris@4: **/ Chris@4: void PaAlsa_EnableRealtimeScheduling( PaStream *s, int enable ); Chris@4: Chris@4: #if 0 Chris@4: void PaAlsa_EnableWatchdog( PaStream *s, int enable ); Chris@4: #endif Chris@4: Chris@4: /** Get the ALSA-lib card index of this stream's input device. */ Chris@4: PaError PaAlsa_GetStreamInputCard( PaStream *s, int *card ); Chris@4: Chris@4: /** Get the ALSA-lib card index of this stream's output device. */ Chris@4: PaError PaAlsa_GetStreamOutputCard( PaStream *s, int *card ); Chris@4: Chris@4: /** Set the number of periods (buffer fragments) to configure devices with. Chris@4: * Chris@4: * By default the number of periods is 4, this is the lowest number of periods that works well on Chris@4: * the author's soundcard. Chris@4: * @param numPeriods The number of periods. Chris@4: */ Chris@4: PaError PaAlsa_SetNumPeriods( int numPeriods ); Chris@4: Chris@4: /** Set the maximum number of times to retry opening busy device (sleeping for a Chris@4: * short interval inbetween). Chris@4: */ Chris@4: PaError PaAlsa_SetRetriesBusy( int retries ); Chris@4: Chris@4: /** Set the path and name of ALSA library file if PortAudio is configured to load it dynamically (see Chris@4: * PA_ALSA_DYNAMIC). This setting will overwrite the default name set by PA_ALSA_PATHNAME define. Chris@4: * @param pathName Full path with filename. Only filename can be used, but dlopen() will lookup default Chris@4: * searchable directories (/usr/lib;/usr/local/lib) then. Chris@4: */ Chris@4: void PaAlsa_SetLibraryPathName( const char *pathName ); Chris@4: Chris@4: #ifdef __cplusplus Chris@4: } Chris@4: #endif Chris@4: Chris@4: #endif