Assignment for RMIT Mixed Reality in 2020
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.

43 lines
1.2 KiB

  1. // This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
  2. namespace Oculus.Platform
  3. {
  4. using Description = System.ComponentModel.DescriptionAttribute;
  5. public enum VoipBitrate : int
  6. {
  7. [Description("UNKNOWN")]
  8. Unknown,
  9. /// Very low audio quality for minimal network usage. This may not give the
  10. /// full range of Hz for audio, but it will save on network usage.
  11. [Description("B16000")]
  12. B16000,
  13. /// Lower audio quality but also less network usage.
  14. [Description("B24000")]
  15. B24000,
  16. /// This is the default bitrate for voip connections. It should be the best
  17. /// tradeoff between audio quality and network usage.
  18. [Description("B32000")]
  19. B32000,
  20. /// Higher audio quality at the expense of network usage. Good if there's music
  21. /// being streamed over the connections
  22. [Description("B64000")]
  23. B64000,
  24. /// Even higher audio quality for music streaming or radio-like quality.
  25. [Description("B96000")]
  26. B96000,
  27. /// At this point the audio quality should be preceptually indistinguishable
  28. /// from the uncompressed input.
  29. [Description("B128000")]
  30. B128000,
  31. }
  32. }