1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-21 12:26:34 -04:00
sdrangel/wdsp/emnr.hpp
2024-07-11 21:25:52 +02:00

201 lines
4.8 KiB
C++

/* emnr.h
This file is part of a program that implements a Software-Defined Radio.
Copyright (C) 2015 Warren Pratt, NR0V
Copyright (C) 2024 Edouard Griffiths, F4EXB Adapted to SDRangel
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
The author can be reached by email at
warren@wpratt.com
*/
#ifndef wdsp_emnr_h
#define wdsp_emnr_h
#include "fftw3.h"
#include "export.h"
namespace WDSP {
class RXA;
class WDSP_API EMNR
{
public:
int run;
int position;
int bsize;
float* in;
float* out;
int fsize;
int ovrlp;
int incr;
float* window;
int iasize;
float* inaccum;
float* forfftin;
float* forfftout;
int msize;
float* mask;
float* revfftin;
float* revfftout;
float** save;
int oasize;
float* outaccum;
float rate;
int wintype;
float ogain;
float gain;
int nsamps;
int iainidx;
int iaoutidx;
int init_oainidx;
int oainidx;
int oaoutidx;
int saveidx;
fftwf_plan Rfor;
fftwf_plan Rrev;
struct _g
{
int gain_method;
int npe_method;
int ae_run;
float msize;
float* mask;
float* y;
float* lambda_y;
float* lambda_d;
float* prev_mask;
float* prev_gamma;
float gf1p5;
float alpha;
float eps_floor;
float gamma_max;
float q;
float gmax;
//
float* GG;
float* GGS;
FILE* fileb;
} g;
struct _npest
{
int incr;
float rate;
int msize;
float* lambda_y;
float* lambda_d;
float* p;
float* alphaOptHat;
float alphaC;
float alphaCsmooth;
float alphaCmin;
float* alphaHat;
float alphaMax;
float* sigma2N;
float alphaMin_max_value;
float snrq;
float betamax;
float* pbar;
float* p2bar;
float invQeqMax;
float av;
float* Qeq;
int U;
float Dtime;
int V;
int D;
float MofD;
float MofV;
float* bmin;
float* bmin_sub;
int* k_mod;
float* actmin;
float* actmin_sub;
int subwc;
int* lmin_flag;
float* pmin_u;
float invQbar_points[4];
float nsmax[4];
float** actminbuff;
int amb_idx;
} np;
struct _npests
{
int incr;
float rate;
int msize;
float* lambda_y;
float* lambda_d;
float alpha_pow;
float alpha_Pbar;
float epsH1;
float epsH1r;
float* sigma2N;
float* PH1y;
float* Pbar;
float* EN2y;
} nps;
struct _ae
{
int msize;
float* lambda_y;
float zetaThresh;
float psi;
float* nmask;
} ae;
static EMNR* create_emnr (int run, int position, int size, float* in, float* out, int fsize, int ovrlp,
int rate, int wintype, float gain, int gain_method, int npe_method, int ae_run);
static void destroy_emnr (EMNR *a);
static void flush_emnr (EMNR *a);
static void xemnr (EMNR *a, int pos);
static void setBuffers_emnr (EMNR *a, float* in, float* out);
static void setSamplerate_emnr (EMNR *a, int rate);
static void setSize_emnr (EMNR *a, int size);
// RXA Properties
static void SetEMNRRun (RXA& rxa, int run);
static void SetEMNRgainMethod (RXA& rxa, int method);
static void SetEMNRnpeMethod (RXA& rxa, int method);
static void SetEMNRaeRun (RXA& rxa, int run);
static void SetEMNRPosition (RXA& rxa, int position);
static void SetEMNRaeZetaThresh (RXA& rxa, float zetathresh);
static void SetEMNRaePsi (RXA& rxa, float psi);
private:
static float bessI0 (float x);
static float bessI1 (float x);
static float e1xb (float x);
static void calc_window (EMNR *a);
static void interpM (float* res, float x, int nvals, float* xvals, float* yvals);
static void calc_emnr(EMNR *a);
static void decalc_emnr(EMNR *a);
static void LambdaD(EMNR *a);
static void LambdaDs (EMNR *a);
static void aepf(EMNR *a);
static float getKey(float* type, float gamma, float xi);
static void calc_gain (EMNR *a);
};
} // namespace WDSP
#endif