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 | |
| parent | 972272a73300c4d33ae43d572eb1d11f65e2e544 (diff) | |
Credit Gerald Maruccia for the upmixer algorithm.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/upmixer_a.cc | 2 | ||||
| -rw-r--r-- | src/lib/upmixer_a.h | 7 | ||||
| -rw-r--r-- | src/wx/about_dialog.cc | 8 |
3 files changed, 13 insertions, 4 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: diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc index 3f0a1056c..e60e56525 100644 --- a/src/wx/about_dialog.cc +++ b/src/wx/about_dialog.cc @@ -111,9 +111,11 @@ AboutDialog::AboutDialog (wxWindow* parent) translated_by.Add (wxT ("Cherif Ben Brahim")); add_section (_("Translated by"), translated_by); - wxArrayString artwork_by; - artwork_by.Add (wxT ("David Vignoni")); - add_section (_("Artwork by"), artwork_by); + wxArrayString with_help_from; + with_help_from.Add (wxT ("David Vignoni")); + with_help_from.Add (wxT ("Dennis Couzin")); + with_help_from.Add (wxT ("Gérald Maruccia")); + add_section (_("With help from"), with_help_from); wxArrayString supported_by; supported_by.Add (wxT ("Manual AC")); |
