示例#1
0
 public AudioOutput(AudioFeed Source, int BufferSize, int BufferAmount)
 {
     this._Feed = Source;
     this._BufferSize = BufferSize;
     this._BufferAmount = BufferAmount;
     this._Init();
 }
示例#2
0
 public AudioOutput(AudioFeed Source)
     : this(Source, 4096, 2)
 {
 }