diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-08-21 18:14:55 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-09-28 13:36:48 +0200 |
commit | 571d57c591b23d212934f0bb969c33d15c729982 (patch) | |
tree | c5d39bea968b052de46d187ffc0cffab91084aa4 /src/ConfigParser.h | |
parent | 75653763057bb9bf018dfde1a3cda8681c8b8e34 (diff) | |
download | dabmod-571d57c591b23d212934f0bb969c33d15c729982.tar.gz dabmod-571d57c591b23d212934f0bb969c33d15c729982.tar.bz2 dabmod-571d57c591b23d212934f0bb969c33d15c729982.zip |
Fix some CFR things, still WIP
Diffstat (limited to 'src/ConfigParser.h')
-rw-r--r-- | src/ConfigParser.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ConfigParser.h b/src/ConfigParser.h index 89f0fb7..a8d7837 100644 --- a/src/ConfigParser.h +++ b/src/ConfigParser.h @@ -77,6 +77,12 @@ struct mod_settings_t { std::string polyCoefFilename = ""; unsigned polyNumThreads = 0; + // Settings for crest factor reduction + bool enableCfr = false; + float cfrClip = 1.0f; + float cfrErrorClip = 1.0f; + + #if defined(HAVE_OUTPUT_UHD) OutputUHDConfig outputuhd_conf; #endif |