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