예제 #1
0
파일: AudioFeed.cs 프로젝트: dzamkov/MD-old
 public AudioOutput(AudioFeed Source, int BufferSize, int BufferAmount)
 {
     this._Feed = Source;
     this._BufferSize = BufferSize;
     this._BufferAmount = BufferAmount;
     this._Init();
 }
예제 #2
0
파일: AudioFeed.cs 프로젝트: dzamkov/MD-old
 public AudioOutput(AudioFeed Source)
     : this(Source, 4096, 2)
 {
 }