Add reverb preset: chamber
This commit is contained in:
parent
c314131bff
commit
3ebc14c894
1 changed files with 11 additions and 0 deletions
|
|
@ -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"):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue