X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fapluginarray.C;h=5ec7660c3dc9f840d8e13a03094b40605dfc3405;hb=5621db270ccbeabc106e0f438941dba6f930652b;hp=a2be55142a2494ec7cbbd20ac867a089f89303e0;hpb=05bf5047966713579bd8e7a692fda3b49bc43450;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/apluginarray.C b/cinelerra-5.1/cinelerra/apluginarray.C index a2be5514..5ec7660c 100644 --- a/cinelerra-5.1/cinelerra/apluginarray.C +++ b/cinelerra-5.1/cinelerra/apluginarray.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2009 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 "asset.h" @@ -84,7 +84,7 @@ void APluginArray::process_realtime(int module, int64_t input_position, int64_t { int ibfr = module % file->asset->channels; values[module]->process_buffer(realtime_buffers + ibfr, - input_position, + input_position, len, edl->session->sample_rate, end - start, @@ -95,7 +95,7 @@ int APluginArray::process_loop(int module, int64_t &write_length) { if(!realtime_buffers) realtime_buffers = file->get_audio_buffer(); int ibfr = module % file->asset->channels; - int result = values[module]->process_loop(&realtime_buffers[ibfr], + int result = values[module]->process_loop(&realtime_buffers[ibfr], write_length); return result; } @@ -107,7 +107,7 @@ int APluginArray::write_buffers(int64_t len) int result = file->write_audio_buffer(len); realtime_buffers = 0; -// if(!plugin_server->realtime && !done && !result) +// if(!plugin_server->realtime && !done && !result) // realtime_buffers = file->get_audio_buffer(); return result; }