Skip to content

Commit

Permalink
Normalized Smoother target curves
Browse files Browse the repository at this point in the history
  • Loading branch information
VoidXH committed Mar 15, 2024
1 parent 3a62eb5 commit 2f99602
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cavern.QuickEQ/EQCurves/Smoother.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ public Smoother(Equalizer[] sourceFrequencyResponses) : base(MakeCurve(sourceFre
/// Create a target EQ from raw frequency responses, by averaging and smoothing the channels.
/// </summary>
static Equalizer MakeCurve(Equalizer[] sourceFrequencyResponses) {
Equalizer target = EQGenerator.Average(sourceFrequencyResponses);
Equalizer target = EQGenerator.AverageRMS(sourceFrequencyResponses);
target.Smooth(.75);
target.Normalize(500, 10000);
return target;
}
}
Expand Down

0 comments on commit 2f99602

Please sign in to comment.