mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 11:09:05 +03:00
LibAudio: Replace log_pan with a constant power panning algoritm
This little functional change uses the most common algorithm for panning audio, known as constant power panning. It makes it so that the total output power (not directly the sample value, i.e. the peak) stays the same no matter how the audio is panned.
This commit is contained in:
parent
8945cc8358
commit
61d9082da6
Notes:
sideshowbarker
2024-07-18 01:22:15 +09:00
Author: https://github.com/kleinesfilmroellchen Commit: https://github.com/SerenityOS/serenity/commit/61d9082da66 Pull-request: https://github.com/SerenityOS/serenity/pull/10721 Reviewed-by: https://github.com/bgianfo
@ -90,18 +90,22 @@ struct Sample {
|
||||
return new_frame;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE Sample& log_pan(double const pan)
|
||||
// Constant power panning
|
||||
ALWAYS_INLINE Sample& pan(double const position)
|
||||
{
|
||||
left *= linear_to_log(min(pan * -1 + 1.0, 1.0));
|
||||
right *= linear_to_log(min(pan + 1.0, 1.0));
|
||||
double const pi_over_2 = AK::Pi<double> * 0.5;
|
||||
double const root_over_2 = AK::sqrt(2.0) * 0.5;
|
||||
double const angle = position * pi_over_2 * 0.5;
|
||||
left *= root_over_2 * (AK::cos(angle) - AK::sin(angle));
|
||||
right *= root_over_2 * (AK::cos(angle) + AK::sin(angle));
|
||||
return *this;
|
||||
}
|
||||
|
||||
ALWAYS_INLINE Sample log_pan(double const pan) const
|
||||
ALWAYS_INLINE Sample panned(double const position) const
|
||||
{
|
||||
Sample new_frame { left, right };
|
||||
new_frame.log_pan(pan);
|
||||
return new_frame;
|
||||
Sample new_sample { left, right };
|
||||
new_sample.pan(position);
|
||||
return new_sample;
|
||||
}
|
||||
|
||||
constexpr Sample& operator*=(double const mult)
|
||||
|
Loading…
Reference in New Issue
Block a user