public MixerChannel(IBmpProvider bpmProvider = null, MixerChannelOutputType outputType = MixerChannelOutputType.SingleOutput)
     : base(bpmProvider)
 {
     ChannelId = ChannelHelper.IntialiseMixerChannel();
     OutputType = outputType;
     SetVolume(100);
 }
Beispiel #2
0
 public MixerChannel(IBmpProvider bpmProvider = null, MixerChannelOutputType outputType = MixerChannelOutputType.SingleOutput)
     : base(bpmProvider)
 {
     ChannelId  = ChannelHelper.InitializeMixerChannel();
     OutputType = outputType;
     SetVolume(100);
 }
Beispiel #3
0
 public RawLoopPlayer(IBmpProvider bpmProvider = null)
 {
     _audioPlayer = new AudioPlayer(bpmProvider);
 }
 protected Channel(IBmpProvider bpmProvider = null)
 {
     BpmProvider = bpmProvider;
     VstPlugins = new List<VstPlugin>();
 }
 public RawLoopPlayer(IBmpProvider bpmProvider = null)
 {
     _audioPlayer = new AudioPlayer(bpmProvider);
 }
 protected Channel(IBmpProvider bpmProvider = null)
 {
     BpmProvider = bpmProvider;
     VstPlugins  = new List <VstPlugin>();
 }
Beispiel #7
0
 public TrackSamplePlayer(IBmpProvider bpmProvider)
 {
     _audioPlayer = new AudioPlayer(bpmProvider);
     _bpmProvider = bpmProvider;
 }
 public AudioPlayer(IBmpProvider bpmProvider = null)
 {
     Output = new MixerChannel(bpmProvider);
     _streamSections = new List<AudioStreamSection>();
 }
 public AudioPlayer(IBmpProvider bpmProvider = null)
 {
     Output          = new MixerChannel(bpmProvider);
     _streamSections = new List <AudioStreamSection>();
 }
 public TrackSamplePlayer(IBmpProvider bpmProvider = null)
 {
     _audioPlayer = new AudioPlayer(bpmProvider);
     _bpmProvider = bpmProvider;
 }