X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fvocoder%2Fvocoder.h;h=2bcdd5a44c9d0c243008478184d0969343852a45;hb=890309517a08a8c85dfd37b8c7e2ffcc2468ce1d;hp=a63c474a9d85af50b8dc5192924d472ee96788a4;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/vocoder/vocoder.h b/cinelerra-5.1/plugins/vocoder/vocoder.h index a63c474a..2bcdd5a4 100644 --- a/cinelerra-5.1/plugins/vocoder/vocoder.h +++ b/cinelerra-5.1/plugins/vocoder/vocoder.h @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 1997-2011 Adam Williams - * + * * 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) - + };