libcm/osx/cmAudioPortOsx.h

31 lines
945 B
C
Raw Normal View History

2012-10-30 03:52:39 +00:00
#ifndef cmAudioPortOsx_h
#define cmAudioPortOsx_h
#ifdef __cplusplus
extern "C" {
#endif
cmApRC_t cmApOsxInitialize( cmRpt_t* rpt, unsigned baseApDevIdx );
2012-10-30 03:52:39 +00:00
cmApRC_t cmApOsxFinalize();
cmApRC_t cmApOsxDeviceCount();
const char* cmApOsxDeviceLabel( unsigned devIdx );
unsigned cmApOsxDeviceChannelCount( unsigned devIdx, bool inputFl );
double cmApOsxDeviceSampleRate( unsigned devIdx );
unsigned cmApOsxDeviceFramesPerCycle( unsigned devIdx, bool inputFl );
cmApRC_t cmApOsxDeviceSetup(
unsigned devIdx,
double srate,
unsigned framesPerCycle,
cmApCallbackPtr_t callbackPtr,
void* userCbPtr );
cmApRC_t cmApOsxDeviceStart( unsigned devIdx );
cmApRC_t cmApOsxDeviceStop( unsigned devIdx );
bool cmApOsxDeviceIsStarted( unsigned devIdx );
#ifdef __cplusplus
}
#endif
#endif