Jamoma API  0.6.0.a19
pa_mac_core.h
1 #ifndef PA_MAC_CORE_H
2 #define PA_MAC_CORE_H
3 /*
4  * PortAudio Portable Real-Time Audio Library
5  * Macintosh Core Audio specific extensions
6  * portaudio.h should be included before this file.
7  *
8  * Copyright (c) 2005-2006 Bjorn Roche
9  *
10  * Permission is hereby granted, free of charge, to any person obtaining
11  * a copy of this software and associated documentation files
12  * (the "Software"), to deal in the Software without restriction,
13  * including without limitation the rights to use, copy, modify, merge,
14  * publish, distribute, sublicense, and/or sell copies of the Software,
15  * and to permit persons to whom the Software is furnished to do so,
16  * subject to the following conditions:
17  *
18  * The above copyright notice and this permission notice shall be
19  * included in all copies or substantial portions of the Software.
20  *
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
25  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
26  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28  */
29 
30 /*
31  * The text above constitutes the entire PortAudio license; however,
32  * the PortAudio community also makes the following non-binding requests:
33  *
34  * Any person wishing to distribute modifications to the Software is
35  * requested to send the modifications to the original developer so that
36  * they can be incorporated into the canonical version. It is also
37  * requested that these non-binding requests be included along with the
38  * license above.
39  */
40 
41 #include <AudioUnit/AudioUnit.h>
42 //#include <AudioToolbox/AudioToolbox.h>
43 
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47 
48 
49 /*
50  * A pointer to a paMacCoreStreamInfo may be passed as
51  * the hostApiSpecificStreamInfo in the PaStreamParameters struct
52  * when opening a stream or querying the format. Use NULL, for the
53  * defaults. Note that for duplex streams, flags for input and output
54  * should be the same or behaviour is undefined.
55  */
56 typedef struct
57 {
58  unsigned long size; /**size of whole structure including this header */
59  PaHostApiTypeId hostApiType; /**host API for which this data is intended */
60  unsigned long version; /**structure version */
61  unsigned long flags; /* flags to modify behaviour */
62  SInt32 const * channelMap; /* Channel map for HAL channel mapping , if not needed, use NULL;*/
63  unsigned long channelMapSize; /* Channel map size for HAL channel mapping , if not needed, use 0;*/
64 } PaMacCoreStreamInfo;
65 
66 /*
67  * Functions
68  */
69 
70 
71 /* Use this function to initialize a paMacCoreStreamInfo struct
72  * using the requested flags. Note that channel mapping is turned
73  * off after a call to this function.
74  * @param data The datastructure to initialize
75  * @param flags The flags to initialize the datastructure with.
76 */
77 void PaMacCore_SetupStreamInfo( PaMacCoreStreamInfo *data, unsigned long flags );
78 
79 /* call this after pa_SetupMacCoreStreamInfo to use channel mapping as described in notes.txt.
80  * @param data The stream info structure to assign a channel mapping to
81  * @param channelMap The channel map array, as described in notes.txt. This array pointer will be used directly (ie the underlying data will not be copied), so the caller should not free the array until after the stream has been opened.
82  * @param channelMapSize The size of the channel map array.
83  */
84 void PaMacCore_SetupChannelMap( PaMacCoreStreamInfo *data, const SInt32 * const channelMap, unsigned long channelMapSize );
85 
86 /*
87  * Retrieve the AudioDeviceID of the input device assigned to an open stream
88  *
89  * @param s The stream to query.
90  *
91  * @return A valid AudioDeviceID, or NULL if an error occurred.
92  */
93 AudioDeviceID PaMacCore_GetStreamInputDevice( PaStream* s );
94 
95 /*
96  * Retrieve the AudioDeviceID of the output device assigned to an open stream
97  *
98  * @param s The stream to query.
99  *
100  * @return A valid AudioDeviceID, or NULL if an error occurred.
101  */
102 AudioDeviceID PaMacCore_GetStreamOutputDevice( PaStream* s );
103 
104 /*
105  * Returns a statically allocated string with the device's name
106  * for the given channel. NULL will be returned on failure.
107  *
108  * This function's implemenation is not complete!
109  *
110  * @param device The PortAudio device index.
111  * @param channel The channel number who's name is requested.
112  * @return a statically allocated string with the name of the device.
113  * Because this string is statically allocated, it must be
114  * coppied if it is to be saved and used by the user after
115  * another call to this function.
116  *
117  */
118 const char *PaMacCore_GetChannelName( int device, int channelIndex, bool input );
119 
120 /*
121  * Flags
122  */
123 
124 /*
125  * The following flags alter the behaviour of PA on the mac platform.
126  * they can be ORed together. These should work both for opening and
127  * checking a device.
128  */
129 
130 /* Allows PortAudio to change things like the device's frame size,
131  * which allows for much lower latency, but might disrupt the device
132  * if other programs are using it, even when you are just Querying
133  * the device. */
134 #define paMacCoreChangeDeviceParameters (0x01)
135 
136 /* In combination with the above flag,
137  * causes the stream opening to fail, unless the exact sample rates
138  * are supported by the device. */
139 #define paMacCoreFailIfConversionRequired (0x02)
140 
141 /* These flags set the SR conversion quality, if required. The wierd ordering
142  * allows Maximum Quality to be the default.*/
143 #define paMacCoreConversionQualityMin (0x0100)
144 #define paMacCoreConversionQualityMedium (0x0200)
145 #define paMacCoreConversionQualityLow (0x0300)
146 #define paMacCoreConversionQualityHigh (0x0400)
147 #define paMacCoreConversionQualityMax (0x0000)
148 
149 /*
150  * Here are some "preset" combinations of flags (above) to get to some
151  * common configurations. THIS IS OVERKILL, but if more flags are added
152  * it won't be.
153  */
154 
155 /*This is the default setting: do as much sample rate conversion as possible
156  * and as little mucking with the device as possible. */
157 #define paMacCorePlayNice (0x00)
158 /*This setting is tuned for pro audio apps. It allows SR conversion on input
159  and output, but it tries to set the appropriate SR on the device.*/
160 #define paMacCorePro (0x01)
161 /*This is a setting to minimize CPU usage and still play nice.*/
162 #define paMacCoreMinimizeCPUButPlayNice (0x0100)
163 /*This is a setting to minimize CPU usage, even if that means interrupting the device. */
164 #define paMacCoreMinimizeCPU (0x0101)
165 
166 
167 #ifdef __cplusplus
168 }
169 #endif /* __cplusplus */
170 
171 #endif /* PA_MAC_CORE_H */
void PaStream
A single PaStream can provide multiple channels of real-time streaming audio input and output to a cl...
Definition: portaudio.h:579
PaHostApiTypeId
Unchanging unique identifiers for each supported host API.
Definition: portaudio.h:223