change Session::convert_to_frames_at() to Session::convert_to_frames() to reflect...
[ardour.git] / libs / ardour / gain.cc
index d6fd464208b17a7b05aef85d56ec135cc4996f89..a3c27f42605769bb459ef06aa06339cee9f1f349 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000 Paul Davis 
+    Copyright (C) 2000 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
-#include <ardour/gain.h>
+#include "ardour/gain.h"
 
 using namespace ARDOUR;
 
 Gain::Gain ()
-       : Curve (0.0, 2.0, 1.0f)   /* XXX yuck; clamps gain to -inf .. +6db */
+       : AutomationList (Evoral::Parameter(GainAutomation))   /* XXX yuck; clamps gain to -inf .. +6db */
 {
 }
 
 Gain::Gain (const Gain& other)
-       : Curve (other)
+       : AutomationList (other)
 {
 }
 
@@ -36,27 +35,27 @@ Gain&
 Gain::operator= (const Gain& other)
 {
        if (this != &other) {
-               Curve::operator= (other);
+               AutomationList::operator= (other);
        }
        return *this;
 }
 
 void
-Gain::fill_linear_volume_fade_in (Gain& gain, jack_nframes_t frames)
+Gain::fill_linear_volume_fade_in (Gain& /*gain*/, framecnt_t /*frames*/)
 {
 }
 
 void
-Gain::fill_linear_volume_fade_out (Gain& gain, jack_nframes_t frames)
+Gain::fill_linear_volume_fade_out (Gain& /*gain*/, framecnt_t /*frames*/)
 {
 }
 
 void
-Gain::fill_linear_fade_in (Gain& gain, jack_nframes_t frames)
+Gain::fill_linear_fade_in (Gain& /*gain*/, framecnt_t /*frames*/)
 {
 }
 
 void
-Gain::fill_linear_fade_out (Gain& gain, jack_nframes_t frames)
+Gain::fill_linear_fade_out (Gain& /*gain*/, framecnt_t /*frames*/)
 {
 }