SoundIOChannelId.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. namespace SoundIOSharp
  2. {
  3. public enum SoundIOChannelId
  4. {
  5. Invalid,
  6. FrontLeft,
  7. FrontRight,
  8. FrontCenter,
  9. Lfe,
  10. BackLeft,
  11. BackRight,
  12. FrontLeftCenter,
  13. FrontRightCenter,
  14. BackCenter,
  15. SideLeft,
  16. SideRight,
  17. TopCenter,
  18. TopFrontLeft,
  19. TopFrontCenter,
  20. TopFrontRight,
  21. TopBackLeft,
  22. TopBackCenter,
  23. TopBackRight,
  24. BackLeftCenter,
  25. BackRightCenter,
  26. FrontLeftWide,
  27. FrontRightWide,
  28. FrontLeftHigh,
  29. FrontCenterHigh,
  30. FrontRightHigh,
  31. TopFrontLeftCenter,
  32. TopFrontRightCenter,
  33. TopSideLeft,
  34. TopSideRight,
  35. LeftLfe,
  36. RightLfe,
  37. Lfe2,
  38. BottomCenter,
  39. BottomLeftCenter,
  40. BottomRightCenter,
  41. MsMid,
  42. MsSide,
  43. AmbisonicW,
  44. AmbisonicX,
  45. AmbisonicY,
  46. AmbisonicZ,
  47. XyX,
  48. XyY,
  49. HeadphonesLeft,
  50. HeadphonesRight,
  51. ClickTrack,
  52. ForeignLanguage,
  53. HearingImpaired,
  54. Narration,
  55. Haptic,
  56. DialogCentricMix,
  57. Aux,
  58. Aux0,
  59. Aux1,
  60. Aux2,
  61. Aux3,
  62. Aux4,
  63. Aux5,
  64. Aux6,
  65. Aux7,
  66. Aux8,
  67. Aux9,
  68. Aux10,
  69. Aux11,
  70. Aux12,
  71. Aux13,
  72. Aux14,
  73. Aux15
  74. }
  75. }