IOAudioEngine
Abstract base class for a single audio audio / I/O engine.
Declaration
class IOAudioEngine : IOServiceOverview
An IOAudioEngine is defined by a single I/O engine to transfer data to or from one or more sample buffers. Each sample buffer is represented by a single IOAudioStream instance. A single IOAudioEngine must contain at least one IOAudioStream, but has no upper limit on the number of IOAudioStreams it may contain. An IOAudioEngine instance may contain both input and output IOAudioStreams.
An audio driver must subclass IOAudioEngine in order to provide certain services. An IOAudioEngine subclass must start and stop the I/O engine when requested. The I/O engine should be continuously running and loop around from end to beginning. While the audio engine is running, it must take a timestamp as the sample buffer(s) wrap around and start at the beginning. The CoreAudio.framework uses the timestamp to calculate the exact position of the audio engine. An IOAudioEngine subclass must implement getCurrentSampleFrame() to provide a sample position on demand. Finally, an IOAudioEngine subclass must provide clipping and format conversion routines to go to/from the CoreAudio.framework's native float format.
If multiple stream formats or sample rates are allowed, the IOAudioEngine subclass must provide support for changing the hardware when a format or sample rate is changed.
There are several attributes associated with a single IOAudioEngine:
The IOAudioEngine superclass provides a shared status buffer that contains all of the dynamic pieces of information about the audio engine (type IOAudioEngineStatus). It runs an erase process on all of the output streams. The erase head is used to zero out the mix and sample buffers after the samples have been played. Additionally, the IOAudioEngine superclass handles the communication with the CoreAudio.framework and makes the decision to start and stop the audio engine when it detects it is in use.
In order for an audio device to play back or record sound, an IOAudioEngine subclass must be created. The subclass must initialize all of the necessary hardware resources to prepare for starting the audio I/O engine. It typically will perform these tasks in the initHardware() method. A subclass may also implement a stop() method which is called as the driver is being torn down. This is typically called in preparation of removing the device from the system for removable devices.
In addition to initializing the necessary hardware, there are a number of other tasks an IOAudioEngine must do during initHardware(). It must create the necessary IOAudioStream objects to match the device capabilities. Each IOAudioStream must be added using addAudioStream(). It also should create the IOAudioControls needed to control the various attributes of the audio engine: output volume, mute, input gain, input selection, analog passthru. To do that, addDefaultAudioControl() should be called with each IOAudioControl to be attached to the IOAudioEngine. In order to provide for proper synchronization, the latency of the audio engine should be specified with setSampleLatency(). This value represents the latency between the timestamp taken at the beginning of the buffer and when the audio is actually played (or recorded) by the device. If a device is block based or if there is a need to keep the CoreAudio.framework a certain number of samples ahead of (or behind for input) the I/O head, that value should be specified using setSampleOffset(). If this is not specified the CoreAudio.framework may attempt to get as close to the I/O head as possible.
The following fields in the shared IOAudioEngineStatus struct must be maintained by the subclass implementation:
<t> fCurrentLoopCount - the number of times the sample buffer has wrapped around to the beginning
<t> fLastLoopTime - timestamp of the most recent time that the I/O engine looped back to the
beginning of the sample buffer
It is critically important that the fLastLoopTime field be as accurate as possible. It is the basis for the entire timer and synchronization mechanism used by the audio system.
At init time, the IOAudioEngine subclass must call setNumSampleFramesPerBuffer() to indicate how large each of the sample buffers are (measured in sample frames). Within a single IOAudioEngine, all sample buffers must be the same size and be running at the same sample rate. If different buffers/streams can be run at different rates, separate IOAudioEngines should be used. The IOAudioEngine subclass must also call setSampleRate() at init time to indicate the starting sample rate of the device.
Topics
Miscellaneous
addAudioStreamaddTimerclearAllSampleBuffersclientClosedconvertInputSamplesVBRcreateDictionaryFromSampleRatecreateSampleRateFromDictionaryeraseOutputSamplesfreegetAttributeForConnectiongetCommandGategetCurrentSampleFramegetRunEraseHeadgetSampleRategetStategetStatusgetTimerIntervalgetWorkLoopinitinitHardwareinitKeysnewUserClientperformAudioEngineStartperformAudioEngineStopperformEraseperformFlushregisterServiceremoveTimerresetStatusBuffersetAttributeForConnectionsetClockDomainsetClockIsStablesetInputSampleOffsetsetMixClipOverheadsetOutputSampleOffsetsetRunEraseHeadsetSampleLatencysetSampleRatesetStatestart(IOService *)start(IOService *, IOAudioDevice *)startAudioEnginestopstopAudioEnginetimerCallbacktimerFired
Constants
Instance Variables
workLoopuserClientsstatusstatesampleRaterunEraseHeadoutputStreamsnumSampleFramesPerBuffernumErasesPerBuffernumActiveUserClientsisRegisteredinputStreamsdeviceStartedAudioEnginedefaultAudioControlsconfigurationChangeInProgresscommandGateaudioEngineStopPositionaudioDevice
Instance Methods
addAudioStreamaddDefaultAudioControladdTimeraddUserClientbeginConfigurationChangecalculateSampleTimeoutcalculateSampleTimeoutHiRescancelConfigurationChangeclearAllSampleBuffersclientClosedclipOutputSamplescompleteConfigurationChangeconvertInputSamplesconvertInputSamplesVBRcreateUserClientcreateUserClientdecrementActiveUserClientsdetachAudioStreamsdetachUserClientsdriverDesiresHiResSampleIntervalseraseOutputSamplesfreegetAttributeForConnectiongetAudioStreamgetBytesInInputBufferArrayDescriptorgetBytesInOutputBufferArrayDescriptorgetCommandGategetCurrentSampleFramegetGlobalUniqueIDgetLocalUniqueIDgetLoopCountAndTimeStampgetMetaClassgetNearestStartTimegetNextStreamIDgetNumSampleFramesPerBuffergetRunEraseHeadgetSampleRategetStategetStatusgetStatusDescriptorgetStreamForIDgetTimerIntervalgetWorkLoophardwareSampleRateChangedincrementActiveUserClientsinitinitHardwarelockAllStreamsmixOutputSamplesnewUserClientnewUserClientpauseAudioEngineperformAudioEngineStartperformAudioEngineStopperformEraseperformFlushperformFormatChangeperformFormatChangeregisterServiceremoveAllDefaultAudioControlsremoveDefaultAudioControlremoveTimerremoveUserClientresetClipPositionresetStatusBufferresumeAudioEnginesendFormatChangeNotificationsendNotificationsetAttributeForConnectionsetAudioDevicesetClockDomainsetClockIsStablesetDescriptionsetIndexsetInputSampleLatencysetInputSampleOffsetsetMixClipOverheadsetNumSampleFramesPerBuffersetOutputSampleLatencysetOutputSampleOffsetsetRunEraseHeadsetSampleLatencysetSampleOffsetsetSampleRatesetStatesetWorkLoopOnAllAudioControlsstartstartstartAudioEnginestartClientstopstopAudioEnginestopClientstopEngineAtPositiontakeTimeStamptimerFiredunlockAllStreamsupdateChannelNumbersuseHiResSampleIntervalwaitForEngineResume