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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
/*
* Copyright (c) 2001-2002 MUSIC TECHNOLOGY GROUP (MTG)
* UNIVERSITAT POMPEU FABRA
*
*
* 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 "AudioIO.hxx"
#include "AudioIn.hxx"
#include "AudioOut.hxx"
#include "AudioManager.hxx"
#include "ProcessingComposite.hxx"
#include "OSDefines.hxx"
#include <iostream>
using namespace CLAM;
class TremoloConfig: public ProcessingConfig {
public:
DYNAMIC_TYPE_USING_INTERFACE(TremoloConfig,4,ProcessingConfig);
DYN_ATTRIBUTE(0,public, TData , Frequency);
DYN_ATTRIBUTE(1,public, TData , MaxAtenuation);
DYN_ATTRIBUTE(2,public, TData , StartPhase);
DYN_ATTRIBUTE(3,public, TData , SamplingRate);
private:
void DefaultInit();
};
void TremoloConfig::DefaultInit()
{
AddFrequency();
AddMaxAtenuation();
AddStartPhase();
AddSamplingRate();
UpdateData();
SetFrequency( TData(5.0) );
SetMaxAtenuation( TData(0.2) );
SetStartPhase( TData(0.0) );
SetSamplingRate(44100);
}
class Tremolo: public Processing {
TremoloConfig mConfig;
TData mPhase;
TData mPhaseDelta;
TData mMidAmplitude;
TData mTremoloAmplitude;
const char* GetClassName() const {return "Tremolo";}
bool ConcreteStart();
bool ConcreteConfigure(const ProcessingConfig &c);
public:
Tremolo(const TremoloConfig& cfg=TremoloConfig());
const ProcessingConfig &GetConfig() const {return mConfig;}
bool Do() {return true;}
bool Do(const Audio &in, Audio &out);
};
Tremolo::Tremolo(const TremoloConfig &cfg)
{
Configure(cfg);
}
bool Tremolo::ConcreteStart()
{
mPhase = mConfig.GetStartPhase();
return true;
}
bool Tremolo::ConcreteConfigure(const ProcessingConfig &c)
{
CopyAsConcreteConfig(mConfig,c);
mMidAmplitude = (1.0+mConfig.GetMaxAtenuation())/2.0;
mTremoloAmplitude = (1.0-mMidAmplitude)*0.99;
mPhaseDelta = 0.0;
if (mConfig.GetSamplingRate())
mPhaseDelta = 2*PI*mConfig.GetFrequency()/mConfig.GetSamplingRate();
else
return false;
return true;
}
bool Tremolo::Do(const Audio &in_audio, Audio &out_audio)
{
TData amplitude;
const Array<TData> &in = in_audio.GetBuffer();
Array<TData> &out = out_audio.GetBuffer();
for (int i=0; i<out.Size(); i++) {
amplitude = mMidAmplitude + mTremoloAmplitude*sin(mPhase);
mPhase += mPhaseDelta;
out[i]=in[i]*amplitude;
}
if ( mPhase > 2*PI )
mPhase -= 2*TData(PI);
return true;
}
class AudioIOExampleConfig : public ProcessingConfig {
public:
DYNAMIC_TYPE_USING_INTERFACE (AudioIOExampleConfig, 6, ProcessingConfig);
DYN_ATTRIBUTE (0, public, TData, FirstTremoloFreq );
DYN_ATTRIBUTE (1, public, TData, FirstTremoloStartingPhase );
DYN_ATTRIBUTE (2, public, TData, FirstTremoloMaxAtenuation );
DYN_ATTRIBUTE (3, public, TData, SecondTremoloFreq );
DYN_ATTRIBUTE (4, public, TData, SecondTremoloStartingPhase );
DYN_ATTRIBUTE (5, public, TData, SecondTremoloMaxAtenuation );
private:
void DefaultInit();
};
void AudioIOExampleConfig::DefaultInit()
{
AddAll();
UpdateData();
SetFirstTremoloFreq( 50.0 );
SetFirstTremoloStartingPhase( 0 );
SetFirstTremoloMaxAtenuation( 0.25 );
SetSecondTremoloFreq( 25.0 );
SetSecondTremoloStartingPhase( TData(PI/2) );
SetSecondTremoloMaxAtenuation( 0.125 );
}
class AudioIOExample : public ProcessingComposite {
AudioIOExampleConfig mConfig;
int mSize;
AudioIn mInput;
AudioIn mInput2;
AudioOut mOutput;
AudioOut mOutput2;
Tremolo mTremoloApplier;
Tremolo mTremoloApplier2;
Audio mInputData;
Audio mInputData2;
Audio mOutputData;
Audio mOutputData2;
void AttachChildren();
bool ConfigureChildren();
bool ConfigureData();
void ConfigureAudio(Audio&);
const char* GetClassName() const {return "AudioIOExample";}
bool ConcreteStart() throw(ErrProcessingObj);
bool ConcreteConfigure(const ProcessingConfig& c) throw(std::bad_cast);
public:
AudioIOExample(const AudioIOExampleConfig &cfg);
const ProcessingConfig& GetConfig() const {return mConfig;}
bool Do();
};
bool AudioIOExample::ConcreteStart() throw(ErrProcessingObj)
{
iterator obj;
for (obj=composite_begin(); obj!=composite_end(); obj++)
(*obj)->Start();
try {
AudioManager::Current().Start();
}
catch (Err) {
throw(ErrProcessingObj("Could not start AudioManager",this));
}
return true;
}
void AudioIOExample::AttachChildren()
{
mInput.SetParent(this);
mInput2.SetParent(this);
mTremoloApplier.SetParent(this);
mTremoloApplier2.SetParent(this);
mOutput.SetParent(this);
mOutput2.SetParent(this);
}
bool AudioIOExample::ConfigureChildren()
{
AudioIOConfig cfg;
cfg.SetChannelID(0);
mInput.Configure(cfg);
cfg.SetChannelID(1);
mInput2.Configure(cfg);
cfg.SetChannelID(0);
mOutput.Configure(cfg);
cfg.SetChannelID(1);
mOutput2.Configure(cfg);
TremoloConfig tcfg;
tcfg.SetFrequency(mConfig.GetFirstTremoloFreq());
tcfg.SetStartPhase( mConfig.GetFirstTremoloStartingPhase());
tcfg.SetMaxAtenuation(mConfig.GetFirstTremoloMaxAtenuation());
tcfg.SetSamplingRate(AudioManager::Current().SampleRate());
mTremoloApplier.Configure(tcfg);
tcfg.SetFrequency(mConfig.GetSecondTremoloFreq());
tcfg.SetMaxAtenuation( mConfig.GetSecondTremoloMaxAtenuation());
tcfg.SetStartPhase(mConfig.GetSecondTremoloStartingPhase());
mTremoloApplier2.Configure(tcfg);
return true;
}
void AudioIOExample::ConfigureAudio(Audio& a)
{
a.SetSize(mSize);
a.SetSampleRate(AudioManager::Current().SampleRate());
}
bool AudioIOExample::ConfigureData()
{
ConfigureAudio(mInputData);
ConfigureAudio(mInputData2);
ConfigureAudio(mOutputData);
ConfigureAudio(mOutputData2);
return true;
}
bool AudioIOExample::ConcreteConfigure(const ProcessingConfig& c) throw(std::bad_cast)
{
try {
mConfig = dynamic_cast<const AudioIOExampleConfig&>(c);
ConfigureChildren();
}
catch (Err &e) {
// mStatus+=e.what(); // TODO: Port to the new way
return false;
}
ConfigureData();
return true;
}
AudioIOExample::AudioIOExample(const AudioIOExampleConfig &cfg)
: mSize(512)
{
AttachChildren();
Configure(cfg);
}
bool AudioIOExample::Do()
{
while (1)
{
mInput.Do(mInputData);
mInput2.Do(mInputData2);
mTremoloApplier.Do(mInputData,mOutputData);
mTremoloApplier2.Do(mInputData2,mOutputData2);
mOutput.Do(mOutputData);
mOutput2.Do(mOutputData2);
}
return true;
}
int main()
{
try {
AudioManager manager(44100, 512);
manager.Start();
// AudioIOExample configuration. This could be a good example on a
// fairly complex configuration usage.
AudioIOExampleConfig cfg;
cfg.SetFirstTremoloFreq( TData(1.0) );
cfg.SetFirstTremoloStartingPhase( TData(PI) );
cfg.SetFirstTremoloMaxAtenuation( TData(0.6) );
cfg.SetSecondTremoloFreq( TData(3.0) );
cfg.SetSecondTremoloStartingPhase( TData(0) );
cfg.SetSecondTremoloMaxAtenuation( TData(0.45) );
AudioIOExample app(cfg);
app.Start();
std::cout << "Close the console ( or kill the job ) for terminating the application" << std::endl;
std::cout << "If you move around the console window you may experience artifacts" << std::endl;
std::cout << "Note for Windoze users: if the console window is minimized sound will stop" << std::endl;
app.Do();
return 0;
}
catch (Err &e) {
e.Print();
return 1;
}
}
|