remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / plugins / vocoder / vocoder.h
index a63c474a9d85af50b8dc5192924d472ee96788a4..2bcdd5a44c9d0c243008478184d0969343852a45 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * CINELERRA
  * Copyright (C) 1997-2011 Adam Williams <broadcast at earthling dot net>
- * 
+ *
  * 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
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
+ *
  */
 
 // Originally from the following:
@@ -67,10 +67,10 @@ public:
 
        int equivalent(VocoderConfig &that);
        void copy_from(VocoderConfig &that);
-       void interpolate(VocoderConfig &prev, 
-               VocoderConfig &next, 
-               int64_t prev_frame, 
-               int64_t next_frame, 
+       void interpolate(VocoderConfig &prev,
+               VocoderConfig &next,
+               int64_t prev_frame,
+               int64_t next_frame,
                int64_t current_frame);
 
        int carrier_track;
@@ -109,9 +109,9 @@ public:
 class VocoderCarrier : public BC_TumbleTextBox
 {
 public:
-       VocoderCarrier(Vocoder *plugin, 
-               VocoderWindow *window, 
-               int x, 
+       VocoderCarrier(Vocoder *plugin,
+               VocoderWindow *window,
+               int x,
                int y);
        int handle_event();
        Vocoder *plugin;
@@ -121,9 +121,9 @@ public:
 class VocoderBands : public BC_TumbleTextBox
 {
 public:
-       VocoderBands(Vocoder *plugin, 
-               VocoderWindow *window, 
-               int x, 
+       VocoderBands(Vocoder *plugin,
+               VocoderWindow *window,
+               int x,
                int y);
        int handle_event();
        Vocoder *plugin;
@@ -155,7 +155,7 @@ public:
        VocoderBand();
        void reset();
        void copy_from(VocoderBand *src);
-       
+
        double c, f, att;
 
        double freq;
@@ -170,7 +170,7 @@ class VocoderOut
 public:
        VocoderOut();
        void reset();
-       
+
        double decay;
        double oldval;
        double level;           /* 0.0 - 1.0 level of this output band */
@@ -186,8 +186,8 @@ public:
        int is_multichannel();
        void read_data(KeyFrame *keyframe);
        void save_data(KeyFrame *keyframe);
-       int process_buffer(int64_t size, 
-               Samples **buffer, 
+       int process_buffer(int64_t size,
+               Samples **buffer,
                int64_t start_position,
                int sample_rate);
 
@@ -203,7 +203,7 @@ public:
 
        int need_reconfigure;
        PLUGIN_CLASS_MEMBERS2(VocoderConfig)
-       
+
 };