0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-27 11:33:54 +01:00

remove hq

This commit is contained in:
2026-02-15 16:24:18 +01:00
parent 5ab604ddba
commit 689b7fc275
2 changed files with 7 additions and 47 deletions

View File

@@ -10,7 +10,7 @@
inline float deviation_to_dbr(float deviation) {
if (deviation < 1e-6f) return -100.0f;
return 10*log10f((deviation*deviation)/(SQRT19000 * SQRT19000));
return 10*log10f((deviation*deviation)/SQRT19000);
}
void init_bs412(BS412Compressor* mpx, uint32_t mpx_deviation, float target_power, float attack, float release, uint32_t sample_rate) {