X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;ds=sidebyside;f=cinelerra-5.1%2Fplugins%2Fdespike%2Fdespike.C;h=ad636f12e5c7c65e097f8d90f3264f369f004d72;hb=723142d62d61cde588e961426440f839ca9dcda9;hp=5e9f4f80646da35bbd22d4b9476123ae32b831e1;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/despike/despike.C b/cinelerra-5.1/plugins/despike/despike.C index 5e9f4f80..ad636f12 100644 --- a/cinelerra-5.1/plugins/despike/despike.C +++ b/cinelerra-5.1/plugins/despike/despike.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 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 - * + * */ #include "clip.h" @@ -42,16 +42,16 @@ REGISTER_PLUGIN(Despike) Despike::Despike(PluginServer *server) : PluginAClient(server) { - + last_sample = 0; } Despike::~Despike() { - + } -const char* Despike::plugin_title() { return _("Despike"); } +const char* Despike::plugin_title() { return N_("Despike"); } int Despike::is_realtime() { return 1; } NEW_WINDOW_MACRO(Despike, DespikeWindow) @@ -71,8 +71,8 @@ int Despike::process_realtime(int64_t size, Samples *input_ptr, Samples *output_ double *input_samples = input_ptr->get_data(); for(int64_t i = 0; i < size; i++) { - if(fabs(input_samples[i]) > threshold || - fabs(input_samples[i]) - fabs(last_sample) > change) + if(fabs(input_samples[i]) > threshold || + fabs(input_samples[i]) - fabs(last_sample) > change) { output_samples[i] = last_sample; } @@ -160,7 +160,7 @@ DespikeConfig::DespikeConfig() int DespikeConfig::equivalent(DespikeConfig &that) { - return EQUIV(level, that.level) && + return EQUIV(level, that.level) && EQUIV(slope, that.slope); } @@ -170,10 +170,10 @@ void DespikeConfig::copy_from(DespikeConfig &that) slope = that.slope; } -void DespikeConfig::interpolate(DespikeConfig &prev, - DespikeConfig &next, - int64_t prev_frame, - int64_t next_frame, +void DespikeConfig::interpolate(DespikeConfig &prev, + DespikeConfig &next, + int64_t prev_frame, + int64_t next_frame, int64_t current_frame) { double next_scale = (double)(current_frame - prev_frame) / (next_frame - prev_frame);