Credit Gerald Maruccia for the upmixer algorithm.
authorCarl Hetherington <cth@carlh.net>
Fri, 12 Jun 2015 22:35:20 +0000 (23:35 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 12 Jun 2015 22:35:20 +0000 (23:35 +0100)
src/lib/upmixer_a.cc
src/lib/upmixer_a.h
src/wx/about_dialog.cc

index 1edc0104db5337b6583addc9f396f354e48481ab..1ebca58a89bcd5980aa4bc25e54b497c515ea862 100644 (file)
@@ -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)");
 }
 
 
index 9a927b0cff42b9fd9fef54bea20c9ab32a7074fd..111846fe02856ae86e648a1da98fe7b1095a13c0 100644 (file)
 
 */
 
+/** @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:
index 3f0a1056c9dc21193cfea31cbbe00691bec82838..e60e5652588914c57448e51bcacbae5796537767 100644 (file)
@@ -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"));