AudioDeviceDetection

Version 10 (Anonymous, 07/26/2010 08:57 am) → Version 11/14 (Anonymous, 08/14/2010 12:32 pm)

= Audio Device Detection =

[[TOC(Design*, AudioDeviceDetection, depth=1)]]

== Introduction ==

The idea behind audio device detection is to allow SIP users to switch headphones, speakers or microphones as they are plugged or unplugged from the computer.

Many SIP applications allow this. Some require to restart the application, while others can detect it while running. SIP SIMPLE client can currently detect hotplugged devices in Mac OS X platforms.

== Goal ==

The ultimate goal is to enable SIP SIMPLE client applications to detect audio device changes on the fly in all currently supported platforms, with the most immediate priority being [ticket:117 Windows platform].

== Schematic Overview ==

[[Image(wiki:AudioDeviceDetection:SipSimpleAudioDevicesChange.png, width=1024)]]

== Required Modifications ==

After a first analysis of the SIP SIMPLE client SDK and dependencies, these are the necessary PortAudio code modifications:

First, it's necessary to hook up into the host OS multimedia system in order to get notified when new devices are added or old ones removed. If the OS doesn't provide a notification API, a poll loop with sensible frequency settings will need to be used.
* Currently, this is already achieved in Mac OS X through the `AudioHardwareAddPropertyListener` function in Core Audio API.
* In Windows platforms (under `WMME` hostapi), `WM_DEVICECHANGE` OS messages are used. notification or similar methods may be used (proper research of `mmsystem` API is pending).
* Each of the rest of platforms (or corresponding hostapis) will need their own implementations too.

Second, the hostapi needs to react to the `DevicesChanged` notification, by updating the internal audio devices data (after which PortAudio will proceed to notify upper layers about the availability of a new devices list). This is achieved through the `RescanDevices` function.
* Mac OS X hostapi, Core Audio, already updates its internal devices list with `RescanDevices()`.
* Windows WMME hostapi includes its own `RescanDevices()` function, based on the platform lacks such a function. [http://osdir.com/ml/audio.portaudio.devel/2007-02/msg00094.html implementation] Partial implementations] have been provided in PortAudio mailing list. list, but have not yet been integrated into SIP SIMPLE client official releases.
* The rest of platforms and hostapis will need their own implementations. implementations too.