Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
[dcpomatic.git] / src / lib / dolby_cp750.cc
index b45e62b87b765cb7680fe82f46fbcc085cceedec..35f044630bea86a00b5700fe12aa8e65a7284903 100644 (file)
@@ -24,7 +24,7 @@
 using namespace std;
 
 DolbyCP750::DolbyCP750 ()
-        : SoundProcessor ("dolby_cp750", _("Dolby CP750"))
+       : CinemaSoundProcessor ("dolby_cp750", _("Dolby CP650 and CP750"))
 {
 
 }
@@ -39,7 +39,7 @@ DolbyCP750::db_for_fader_change (float from, float to) const
                        float const t = min (to, 4.0f);
                        db += (t - from) * 20;
                }
-               
+
                if (to > 4) {
                        float const t = max (from, 4.0f);
                        db += (to - t) * 3.33333333333333333;