TeamTalk 5 .NET DLL
Version 5.11A
|
IDs for sound devices. More...
Static Public Attributes | |
const int | TT_SOUNDDEVICE_ID_REMOTEIO = 0 |
Sound device ID for iOS AudioUnit subtype Remote I/O Unit. More... | |
const int | TT_SOUNDDEVICE_ID_VOICEPREPROCESSINGIO = (1 | (int)TT_SOUNDDEVICE_ID_SHARED_FLAG) |
Sound device ID for iOS AudioUnit subtype Voice-Processing I/O Unit. This sound device ID include the flag TT_SOUNDDEVICE_ID_SHARED_FLAG since multiple streams cannot be recorded/played on the device. More... | |
const int | TT_SOUNDDEVICE_ID_OPENSLES_DEFAULT = 0 |
Sound device ID for Android OpenSL ES default audio device. Note that this sound device may also exist in the form where the nDeviceID as been or'ed with TT_SOUNDDEVICE_ID_SHARED_FLAG. More... | |
const int | TT_SOUNDDEVICE_ID_OPENSLES_VOICECOM = 1 |
Sound device ID for Android OpenSL ES voice communication mode. This device uses the OpenSL ES' AndroidConfiguration SL_ANDROID_RECORDING_PRESET_VOICE_COMMUNICATION . More... | |
const int | TT_SOUNDDEVICE_ID_TEAMTALK_VIRTUAL = 1978 |
Sound device ID for virtual TeamTalk sound device. More... | |
const uint | TT_SOUNDDEVICE_ID_SHARED_FLAG = 0x00000800 |
Flag/bit in nDeviceID telling if the BearWare.SoundDevice is a shared version of an existing sound device. More... | |
const uint | TT_SOUNDDEVICE_ID_MASK = 0x000007FF |
Extract sound device ID of nDeviceID in BearWare.SoundDevice by and'ing this value. More... | |
IDs for sound devices.
Definition at line 333 of file TeamTalk.cs.
|
static |
Sound device ID for iOS AudioUnit subtype Remote I/O Unit.
Definition at line 337 of file TeamTalk.cs.
|
static |
Sound device ID for iOS AudioUnit subtype Voice-Processing I/O Unit. This sound device ID include the flag TT_SOUNDDEVICE_ID_SHARED_FLAG since multiple streams cannot be recorded/played on the device.
Definition at line 343 of file TeamTalk.cs.
|
static |
Sound device ID for Android OpenSL ES default audio device. Note that this sound device may also exist in the form where the nDeviceID
as been or'ed with TT_SOUNDDEVICE_ID_SHARED_FLAG.
Definition at line 348 of file TeamTalk.cs.
|
static |
Sound device ID for Android OpenSL ES voice communication mode. This device uses the OpenSL ES' AndroidConfiguration SL_ANDROID_RECORDING_PRESET_VOICE_COMMUNICATION
.
Definition at line 353 of file TeamTalk.cs.
|
static |
Sound device ID for virtual TeamTalk sound device.
This is a sound device which decodes received audio packets but does not send the decoded audio to a real sound device. When used for recording the virtual sound device injects silence.
In duplex mode the virtual TeamTalk sound device can only be used as input/output device.
Definition at line 362 of file TeamTalk.cs.
|
static |
Flag/bit in nDeviceID
telling if the BearWare.SoundDevice is a shared version of an existing sound device.
On Android the recording device can only be used by one TeamTalk instance. As a workaround for this issue a shared recording device has been introduced. Internally TeamTalk initializes TT_SOUNDDEVICE_ID_OPENSLES_DEFAULT which then resample and distribution the audio data to multiple TeamTalk instances.
The shared audio device on Android will show up as (TT_SOUNDDEVICE_ID_OPENSLES_DEFAULT | TT_SOUNDDEVICE_ID_SHARED_FLAG), i.e. 2048.
Definition at line 378 of file TeamTalk.cs.
|
static |
Extract sound device ID of nDeviceID
in BearWare.SoundDevice by and'ing this value.
let PhysicalDeviceID = (SoundDevice.nDeviceID & TT_SOUNDDEVICE_ID_MASK).
Definition at line 384 of file TeamTalk.cs.