コード例 #1
0
ファイル: NAudioService.cs プロジェクト: goranzr85/Synechron
 internal NAudioService(int resamplerQuality,
                        bool normalizeSamples,
                        IAudioSamplesNormalizer audioSamplesNormalizer,
                        INAudioSourceReader sourceReader)
 {
     this.sourceReader           = sourceReader;
     this.resamplerQuality       = resamplerQuality;
     this.normalizeSamples       = normalizeSamples;
     this.audioSamplesNormalizer = audioSamplesNormalizer;
 }
コード例 #2
0
 internal NAudioService(INAudioSourceReader sourceReader)
 {
     this.sourceReader = sourceReader;
 }
コード例 #3
0
 internal NAudioService(int downSamplingQuality, INAudioSourceReader sourceReader)
 {
     this.sourceReader        = sourceReader;
     this.downSamplingQuality = downSamplingQuality;
 }
コード例 #4
0
 internal NAudioService(INAudioSourceReader sourceReader)
 {
     this.sourceReader = sourceReader;
 }
コード例 #5
0
 internal NAudioStreamingUrlReader(INAudioSourceReader reader)
 {
     this.reader = reader;
 }
コード例 #6
0
 internal NAudioStreamingUrlReader(INAudioSourceReader reader)
 {
     this.reader = reader;
 }