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.
29 lines
618 B
29 lines
618 B
using System; |
|
|
|
namespace AX.AudioSystem |
|
{ |
|
public enum OpusBandwidth |
|
{ |
|
Auto = -1000, |
|
/// <summary> |
|
/// Up to 4Khz。 |
|
/// </summary> |
|
Narrowband = 1101, |
|
/// <summary> |
|
/// Up to 6Khz。 |
|
/// </summary> |
|
Mediumband = 1102, |
|
/// <summary> |
|
/// Up to 8Khz。 |
|
/// </summary> |
|
Wideband = 1103, |
|
/// <summary> |
|
/// Up to 12Khz。 |
|
/// </summary> |
|
SuperWideband = 1104, |
|
/// <summary> |
|
/// Up to 20Khz (High Definition)。 |
|
/// </summary> |
|
Fullband = 1105 |
|
} |
|
} |