Example #1
0
 public StreamControl(HookManager hookManager = null)
 {
     this._hookManager = hookManager;
     this.AudioGain    = 10f;
     this.ScaleOutput  = true;
 }
Example #2
0
 public StreamControl(HookManager hookManager = null)
 {
     this._hookManager = hookManager;
       this.AudioGain = 10f;
       this.ScaleOutput = true;
 }
Example #3
0
 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();
 }
Example #4
0
File: Vfo.cs Project: 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;
 }