0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00

sliding window?

This commit is contained in:
2025-12-30 22:06:33 +01:00
parent a5149126c0
commit 2b65557dfe
2 changed files with 13 additions and 18 deletions

View File

@@ -14,14 +14,15 @@
typedef struct
{
uint32_t mpx_deviation;
uint32_t average_counter;
uint32_t sample_rate;
uint32_t sample_counter;
float target;
float attack;
float release;
float max;
float gain;
double average;
double avg_power;
double alpha;
} BS412Compressor;
float dbr_to_deviation(float dbr);