コード例 #1
0
 public void AddSourceChannel(AudioMixSourceChannelType sourceChannelType, Double gain)
 {
     SourceChannels.Add(new DownmixConfigChannel(sourceChannelType, gain));
 }
コード例 #2
0
 public DownmixConfigChannel(AudioMixSourceChannelType sourceChannelType, Double gain)
 {
     SourceChannelType = sourceChannelType;
     Gain = gain;
 }