diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-12 23:35:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-12 23:35:20 +0100 |
| commit | 068c395576c263aa55f35ad7cfb74cd4eba7c8f6 (patch) | |
| tree | fbf3f7b3eca050a704bae2f922aa4bc3f530ba7f /src/lib | |
| parent | 972272a73300c4d33ae43d572eb1d11f65e2e544 (diff) | |
Credit Gerald Maruccia for the upmixer algorithm.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/upmixer_a.cc | 2 | ||||
| -rw-r--r-- | src/lib/upmixer_a.h | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/upmixer_a.cc b/src/lib/upmixer_a.cc index 1edc0104d..1ebca58a8 100644 --- a/src/lib/upmixer_a.cc +++ b/src/lib/upmixer_a.cc @@ -42,7 +42,7 @@ UpmixerA::UpmixerA (int sampling_rate) string UpmixerA::name () const { - return _("Stereo to 5.1 up-mixer A"); + return _("Stereo to 5.1 up-mixer A (Gérald Maruccia)"); } diff --git a/src/lib/upmixer_a.h b/src/lib/upmixer_a.h index 9a927b0cf..111846fe0 100644 --- a/src/lib/upmixer_a.h +++ b/src/lib/upmixer_a.h @@ -17,9 +17,16 @@ */ +/** @file src/lib/upmixer_a.h + * @brief UpmixerA class. + */ + #include "audio_processor.h" #include "audio_filter.h" +/** @class UpmixerA + * @brief Stereo to 5.1 upmixer algorithm by Gérald Maruccia. + */ class UpmixerA : public AudioProcessor { public: |
