13 lines
493 B
Rust
13 lines
493 B
Rust
|
// Copyright (c) 2021 Weird Constructor <weirdconstructor@gmail.com>
|
||
|
// This file is a part of HexoDSP. Released under GPL-3.0-or-later.
|
||
|
// See README.md and COPYING for details.
|
||
|
|
||
|
// This file contains a reverb implementation that is based
|
||
|
// on Jon Dattorro's 1997 reverb algorithm. It's also largely
|
||
|
// based on the C++ implementation from ValleyAudio / ValleyRackFree
|
||
|
//
|
||
|
// ValleyRackFree Copyright (C) 2020, Valley Audio Soft, Dale Johnson
|
||
|
// Adapted under the GPL-3.0-or-later License.
|
||
|
|
||
|
|