diff options
author | Chris Robinson <[email protected]> | 2021-10-08 11:05:36 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-10-08 11:05:36 -0700 |
commit | e3b8f8fe272503ef7f738da2f577f68b0fe16eeb (patch) | |
tree | dbcedc04132f1471f651984f9b5726678cca3443 /core/mastering.h | |
parent | 8da4eaff29972aca8932c75084d1f1698da5e762 (diff) |
Make a construct_at method amd use it
Diffstat (limited to 'core/mastering.h')
-rw-r--r-- | core/mastering.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/mastering.h b/core/mastering.h index 322d3654..1a36937c 100644 --- a/core/mastering.h +++ b/core/mastering.h @@ -100,5 +100,6 @@ struct Compressor { const float ThresholdDb, const float Ratio, const float KneeDb, const float AttackTime, const float ReleaseTime); }; +using CompressorPtr = std::unique_ptr<Compressor>; #endif /* CORE_MASTERING_H */ |