1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
// ------------------------------------------------------------------------
// audiofx.cpp: General effect processing routines.
// Copyright (C) 1999-2002,2004,2006,2008 Kai Vehmanen
//
// Attributes:
// eca-style-version: 3 (see Ecasound Programmer's Guide)
//
// 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 <kvu_dbc.h>
#include <kvu_numtostr.h>
#include "sample-specs.h"
#include "samplebuffer.h"
#include "audiofx.h"
#include "eca-logger.h"
EFFECT_BASE::EFFECT_BASE(void)
: channels_rep(0)
{
}
EFFECT_BASE::~EFFECT_BASE(void)
{
}
void EFFECT_BASE::init(SAMPLE_BUFFER* sbuf)
{
ECA_LOG_MSG(ECA_LOGGER::user_objects,
"Init w/ samplerate " +
kvu_numtostr(samples_per_second()) + " for object " +
name() + ".");
set_channels(sbuf->number_of_channels());
DBC_CHECK(channels() > 0);
DBC_CHECK(samples_per_second() > 0);
}
int EFFECT_BASE::channels(void) const
{
return channels_rep;
}
void EFFECT_BASE::set_samples_per_second(SAMPLE_SPECS::sample_rate_t new_rate)
{
ECA_LOG_MSG(ECA_LOGGER::user_objects,
"Setting samplerate to " +
kvu_numtostr(new_rate) + " for object " +
name() + ". Old value " +
kvu_numtostr(samples_per_second()) + ".");
/* note: changing the sample rate might change values of
* of parameters, so we want to preserve the values */
if (samples_per_second() != new_rate) {
std::vector<parameter_t> old_values (number_of_params());
for(int n = 0; n < number_of_params(); n++) {
old_values[n] = get_parameter(n + 1);
}
ECA_SAMPLERATE_AWARE::set_samples_per_second(new_rate);
for(int n = 0; n < number_of_params(); n++) {
set_parameter(n + 1, old_values[n]);
}
}
}
void EFFECT_BASE::set_channels(int v)
{
channels_rep = v;
}
|