mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:40:00 +00:00
Fix a bug with the Reverb command in reading from the pre_delay line.
This commit is contained in:
parent
97f7a560f3
commit
104cb6aa0a
3 changed files with 8 additions and 6 deletions
|
@ -308,7 +308,8 @@ static void ApplyReverbEffect(const ReverbInfo::ParameterVersion2& params, Rever
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::FixedPoint<50, 14> pre_delay_sample{
|
Common::FixedPoint<50, 14> pre_delay_sample{
|
||||||
state.pre_delay_line.Read() * Common::FixedPoint<50, 14>::from_base(params.late_gain)};
|
state.pre_delay_line.TapOut(state.pre_delay_time) *
|
||||||
|
Common::FixedPoint<50, 14>::from_base(params.late_gain)};
|
||||||
|
|
||||||
std::array<Common::FixedPoint<50, 14>, ReverbInfo::MaxDelayLines> mix_matrix{
|
std::array<Common::FixedPoint<50, 14>, ReverbInfo::MaxDelayLines> mix_matrix{
|
||||||
state.prev_feedback_output[2] + state.prev_feedback_output[1] + pre_delay_sample,
|
state.prev_feedback_output[2] + state.prev_feedback_output[1] + pre_delay_sample,
|
||||||
|
|
|
@ -104,7 +104,8 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
void Write(const Common::FixedPoint<50, 14> sample) {
|
void Write(const Common::FixedPoint<50, 14> sample) {
|
||||||
*(input++) = sample;
|
*input = sample;
|
||||||
|
input++;
|
||||||
if (input >= buffer_end) {
|
if (input >= buffer_end) {
|
||||||
input = buffer.data();
|
input = buffer.data();
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,12 +79,10 @@ public:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
sample_count = delay_time;
|
sample_count = delay_time;
|
||||||
input = &buffer[(output - buffer.data() + sample_count) % (sample_count_max + 1)];
|
input = &buffer[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::FixedPoint<50, 14> Tick(const Common::FixedPoint<50, 14> sample) {
|
Common::FixedPoint<50, 14> Tick(const Common::FixedPoint<50, 14> sample) {
|
||||||
Write(sample);
|
|
||||||
|
|
||||||
auto out_sample{Read()};
|
auto out_sample{Read()};
|
||||||
|
|
||||||
output++;
|
output++;
|
||||||
|
@ -92,6 +90,7 @@ public:
|
||||||
output = buffer.data();
|
output = buffer.data();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Write(sample);
|
||||||
return out_sample;
|
return out_sample;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -100,7 +99,8 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
void Write(const Common::FixedPoint<50, 14> sample) {
|
void Write(const Common::FixedPoint<50, 14> sample) {
|
||||||
*(input++) = sample;
|
*input = sample;
|
||||||
|
input++;
|
||||||
if (input >= buffer_end) {
|
if (input >= buffer_end) {
|
||||||
input = buffer.data();
|
input = buffer.data();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue