mirror of
https://github.com/radio95-rnt/fm95.git
synced 2026-07-30 16:29:15 +02:00
reduce gain
This commit is contained in:
+9
-1
@@ -527,7 +527,15 @@ int main(int argc, char **argv) {
|
|||||||
|
|
||||||
float mpower = measure_mpx(&power, output[i] * 75000);
|
float mpower = measure_mpx(&power, output[i] * 75000);
|
||||||
if (mpower > mpx_power) {
|
if (mpower > mpx_power) {
|
||||||
printf("Overpower! %f/%f\n", mpower, mpx_power);
|
float excess_power = mpower - mpx_power;
|
||||||
|
float reduction_factor_db = excess_power;
|
||||||
|
|
||||||
|
float reduction_factor_linear = powf(10.0f, -reduction_factor_db / 20.0f);
|
||||||
|
|
||||||
|
output[i] *= reduction_factor_linear;
|
||||||
|
|
||||||
|
mpower = measure_mpx(&power, output[i] * 75000);
|
||||||
|
printf("Reduced overpower: %f -> %f (target: %f)\n", mpower + excess_power, mpower, mpx_power);
|
||||||
}
|
}
|
||||||
|
|
||||||
output[i] *= master_volume;
|
output[i] *= master_volume;
|
||||||
|
|||||||
Reference in New Issue
Block a user