Exemplo n.º 1
0
 public StreamControl(HookManager hookManager = null)
 {
     this._hookManager = hookManager;
     this.AudioGain    = 10f;
     this.ScaleOutput  = true;
 }
Exemplo n.º 2
0
 public StreamControl(HookManager hookManager = null)
 {
     this._hookManager = hookManager;
       this.AudioGain = 10f;
       this.ScaleOutput = true;
 }
Exemplo n.º 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();
 }
Exemplo n.º 4
0
Arquivo: Vfo.cs Projeto: 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;
 }