AudioChannelForm.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using DirectShow.BaseClasses;
  9. using System.Runtime.InteropServices;
  10. using Sonic;
  11. namespace ExampleFilters
  12. {
  13. [ComVisible(true)]
  14. [Guid("8751B7B2-3EB0-45a4-A3EE-F0954088DEC8")]
  15. public partial class AudioChannelForm : BasePropertyPage
  16. {
  17. #region Classes
  18. protected class ChannelDecs
  19. {
  20. AudioChannel m_Channel;
  21. public ChannelDecs(AudioChannel _channel)
  22. {
  23. m_Channel = _channel;
  24. }
  25. public AudioChannel Channel
  26. {
  27. get { return m_Channel; }
  28. }
  29. public override string ToString()
  30. {
  31. switch (m_Channel)
  32. {
  33. case AudioChannel.FRONT_LEFT:
  34. return "Front Left";
  35. case AudioChannel.FRONT_RIGHT:
  36. return "Front Right";
  37. case AudioChannel.BACK_LEFT:
  38. return "Back Left";
  39. case AudioChannel.BACK_RIGHT:
  40. return "Back Right";
  41. case AudioChannel.FRONT_CENTER:
  42. return "Front Center";
  43. case AudioChannel.LOW_FREQUENCY:
  44. return "Low Frequency";
  45. case AudioChannel.SIDE_LEFT:
  46. return "Side Left";
  47. case AudioChannel.SIDE_RIGHT:
  48. return "Side Right";
  49. }
  50. return base.ToString();
  51. }
  52. public override bool Equals(object obj)
  53. {
  54. if (obj.GetType() == typeof(AudioChannel))
  55. {
  56. return m_Channel == (AudioChannel)obj;
  57. }
  58. if (obj.GetType() == typeof(ChannelDecs))
  59. {
  60. return m_Channel == ((ChannelDecs)obj).m_Channel;
  61. }
  62. return base.Equals(obj);
  63. }
  64. public override int GetHashCode()
  65. {
  66. return m_Channel.GetHashCode();
  67. }
  68. public static implicit operator AudioChannel(ChannelDecs _item)
  69. {
  70. return _item.Channel;
  71. }
  72. public static explicit operator ChannelDecs(AudioChannel _channel)
  73. {
  74. return new ChannelDecs(_channel);
  75. }
  76. public static bool operator !=(ChannelDecs _src, ChannelDecs _dest)
  77. {
  78. return !(_src == _dest);
  79. }
  80. public static bool operator ==(ChannelDecs _src, ChannelDecs _dest)
  81. {
  82. return _src.m_Channel == _dest.m_Channel;
  83. }
  84. }
  85. #endregion
  86. #region Variables
  87. private IAudioChannel m_pChannel = null;
  88. #endregion
  89. #region Constructor
  90. public AudioChannelForm()
  91. {
  92. InitializeComponent();
  93. }
  94. #endregion
  95. #region Form Handlers
  96. private void AudioChannelForm_Load(object sender, EventArgs e)
  97. {
  98. AudioChannel[] _channels = (AudioChannel[])Enum.GetValues(typeof(AudioChannel));
  99. foreach (AudioChannel _channel in _channels) cmboChannel.Items.Add(new ChannelDecs(_channel));
  100. if (m_pChannel != null)
  101. {
  102. AudioChannel _channel;
  103. m_pChannel.get_ActiveChannel(out _channel);
  104. cmboChannel.SelectedItem = _channel;
  105. }
  106. }
  107. private void cmboChannel_SelectedIndexChanged(object sender, EventArgs e)
  108. {
  109. this.Dirty = true;
  110. }
  111. #endregion
  112. #region Overridden Methods
  113. public override HRESULT OnConnect(IntPtr pUnknown)
  114. {
  115. m_pChannel = (IAudioChannel)Marshal.GetObjectForIUnknown(pUnknown);
  116. return HRESULT.NOERROR;
  117. }
  118. public override HRESULT OnDisconnect()
  119. {
  120. m_pChannel = null;
  121. return HRESULT.NOERROR;
  122. }
  123. public override HRESULT OnApplyChanges()
  124. {
  125. if (m_pChannel != null && cmboChannel.SelectedItem != null)
  126. {
  127. AudioChannel _channel = (cmboChannel.SelectedItem as ChannelDecs);
  128. return (HRESULT)m_pChannel.put_ActiveChannel(_channel);
  129. }
  130. return HRESULT.NOERROR;
  131. }
  132. #endregion
  133. }
  134. }