TeamTalk 5 C-API DLL
Version 5.14A
|
OPUS audio codec settings. For detailed information about the OPUS codec check out http://www.opus-codec.org. More...
#include <TeamTalk.h>
Public Attributes | |
INT32 | nSampleRate |
The sample rate to use. Sample rate must be 8000, 12000, 16000, 24000 or 48000 Hz. More... | |
INT32 | nChannels |
Mono = 1 or stereo = 2. More... | |
INT32 | nApplication |
Application of encoded audio, i.e. VoIP or music. More... | |
INT32 | nComplexity |
Complexity of encoding (affects CPU usage). Value from 0-10. More... | |
TTBOOL | bFEC |
Forward error correction. Corrects errors if there's packetloss. More... | |
TTBOOL | bDTX |
Discontinuous transmission. Enables "null" packets during silence. More... | |
INT32 | nBitRate |
Bitrate for encoded audio. Should be between OPUS_MIN_BITRATE and OPUS_MAX_BITRATE. More... | |
TTBOOL | bVBR |
Enable variable bitrate. More... | |
TTBOOL | bVBRConstraint |
Enable constrained VBR. bVBR must be enabled to enable this. More... | |
INT32 | nTxIntervalMSec |
Duration of audio before each transmission. Minimum is 2 msec. Recommended is 40 msec. Maximum is 500 msec. More... | |
INT32 | nFrameSizeMSec |
OPUS supports 2.5, 5, 10, 20, 40, 60, 80, 100 and 120 msec. If nFrameSizeMSec is 0 then nFrameSizeMSec will be same as nTxIntervalMSec . More... | |
OPUS audio codec settings. For detailed information about the OPUS codec check out http://www.opus-codec.org.
Definition at line 1144 of file TeamTalk.h.
INT32 OpusCodec::nSampleRate |
The sample rate to use. Sample rate must be 8000, 12000, 16000, 24000 or 48000 Hz.
Definition at line 1148 of file TeamTalk.h.
INT32 OpusCodec::nChannels |
Mono = 1 or stereo = 2.
Definition at line 1150 of file TeamTalk.h.
INT32 OpusCodec::nApplication |
Application of encoded audio, i.e. VoIP or music.
Definition at line 1154 of file TeamTalk.h.
INT32 OpusCodec::nComplexity |
Complexity of encoding (affects CPU usage). Value from 0-10.
Definition at line 1157 of file TeamTalk.h.
TTBOOL OpusCodec::bFEC |
Forward error correction. Corrects errors if there's packetloss.
Definition at line 1160 of file TeamTalk.h.
TTBOOL OpusCodec::bDTX |
Discontinuous transmission. Enables "null" packets during silence.
Definition at line 1163 of file TeamTalk.h.
INT32 OpusCodec::nBitRate |
Bitrate for encoded audio. Should be between OPUS_MIN_BITRATE and OPUS_MAX_BITRATE.
Definition at line 1166 of file TeamTalk.h.
TTBOOL OpusCodec::bVBR |
Enable variable bitrate.
Definition at line 1168 of file TeamTalk.h.
TTBOOL OpusCodec::bVBRConstraint |
Enable constrained VBR. bVBR
must be enabled to enable this.
Definition at line 1171 of file TeamTalk.h.
INT32 OpusCodec::nTxIntervalMSec |
Duration of audio before each transmission. Minimum is 2 msec. Recommended is 40 msec. Maximum is 500 msec.
The SoundSystem must be able to process audio packets at this interval. In most cases this makes less than 40 msec transmission interval unfeasible.
Definition at line 1178 of file TeamTalk.h.
INT32 OpusCodec::nFrameSizeMSec |
OPUS supports 2.5, 5, 10, 20, 40, 60, 80, 100 and 120 msec. If nFrameSizeMSec
is 0 then nFrameSizeMSec
will be same as nTxIntervalMSec
.
Definition at line 1182 of file TeamTalk.h.