You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Discord.Audio
|
|
|
|
|
{
|
|
|
|
|
//https://github.com/gcp/opus/blob/master/include/opus_defines.h
|
|
|
|
|
internal enum OpusCtl : int
|
|
|
|
|
{
|
|
|
|
|
SetBitrate = 4002,
|
|
|
|
|
SetBandwidth = 4008,
|
|
|
|
|
SetInbandFEC = 4012,
|
|
|
|
|
SetPacketLossPercent = 4014,
|
|
|
|
|
SetSignal = 4024
|
|
|
|
|
}
|
|
|
|
|
}
|