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
|
// ------------------------------------------------------------------------
// stamp-ctrl.cpp: Controller sources that analyze audio stamps
// and produce control data.
// Copyright (C) 2000,2001,2008 Kai Vehmanen
//
// Attributes:
// eca-style-version: 3 (see Ecasound Programmer's Guide)
//
// This program is fre 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 "samplebuffer_functions.h"
#include "stamp-ctrl.h"
VOLUME_ANALYZE_CONTROLLER::VOLUME_ANALYZE_CONTROLLER(void)
{
}
CONTROLLER_SOURCE::parameter_t VOLUME_ANALYZE_CONTROLLER::value(double pos)
{
parameter_t v = 0.0f;
fetch_stamp(&sbuf_rep);
if (rms_mode_rep != 0)
v = SAMPLE_BUFFER_FUNCTIONS::RMS_volume(sbuf_rep);
else
v = SAMPLE_BUFFER_FUNCTIONS::average_amplitude(sbuf_rep);
if (!(v > 0.0f)) v = 0.0f;
// cerr << "(volume-analyze-ctrl) Fetches a sbuf with value " << v << endl;
return v;
}
void VOLUME_ANALYZE_CONTROLLER::init(void)
{
}
void VOLUME_ANALYZE_CONTROLLER::set_parameter(int param, CONTROLLER_SOURCE::parameter_t value)
{
switch (param) {
case 1:
set_id(static_cast<int>(value));
break;
case 2:
rms_mode_rep = static_cast<int>(value);
break;
}
}
CONTROLLER_SOURCE::parameter_t VOLUME_ANALYZE_CONTROLLER::get_parameter(int param) const
{
switch (param) {
case 1:
return static_cast<parameter_t>(id());
case 2:
return static_cast<parameter_t>(rms_mode_rep);
}
return 0.0f;
}
|