示例#1
0
 public StreamControl(HookManager hookManager = null)
 {
     this._hookManager = hookManager;
     this.AudioGain    = 10f;
     this.ScaleOutput  = true;
 }
示例#2
0
 public StreamControl(HookManager hookManager = null)
 {
     this._hookManager = hookManager;
       this.AudioGain = 10f;
       this.ScaleOutput = true;
 }
示例#3
0
文件: MainForm.cs 项目: zloiia/sdrsrc
 public MainForm()
 {
     this._hookManager = new HookManager();
       this._hookManager.RegisterStreamHook((object) this._iqBalancerProcessor, ProcessorType.RawIQ);
       this._streamControl = new StreamControl(this._hookManager);
       this._vfo = new Vfo(this._hookManager);
       this._sharpControlProxy = new SharpControlProxy(this);
       this.InitializeComponent();
       this.InitializeGUI();
 }
示例#4
0
文件: Vfo.cs 项目: zloiia/sdrsrc
 public Vfo(HookManager hookManager = null)
 {
     this._hookManager = hookManager;
       this._bandwidth = 2400;
       this._filterOrder = 500;
       this._rdsDecoder.RdsFrameAvailable += new RdsFrameAvailableDelegate(this.RdsFrameAvailableHandler);
       this._needConfigure = true;
 }