Add reverb preset: chamber

This commit is contained in:
Jean Pierre Cimalando 2020-08-06 16:15:19 +02:00
parent c314131bff
commit 3ebc14c894

View file

@ -61,6 +61,7 @@ namespace fx {
static const Profile largeHall;
static const Profile midHall;
static const Profile smallHall;
static const Profile chamber;
static double lpfCutoff(double x)
{
@ -118,6 +119,14 @@ namespace fx {
100, // dry
60, // wet
};
const Fverb::Impl::Profile Fverb::Impl::chamber {
80, // tail density
95, // decay at max size
0.85, // modulation frequency
1.5, // modulation depth
100, // dry
60, // wet
};
///
Fverb::Fverb()
@ -197,6 +206,8 @@ namespace fx {
profile = &Impl::midHall;
else if (value == "small_hall")
profile = &Impl::smallHall;
else if (value == "chamber")
profile = &Impl::chamber;
}
break;
case hash("reverb_dry"):