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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
/*
* This is the Loris C++ Class Library, implementing analysis,
* manipulation, and synthesis of digitized sounds using the Reassigned
* Bandwidth-Enhanced Additive Sound Model.
*
* Loris is Copyright (c) 1999-2010 by Kelly Fitz and Lippold Haken
*
* 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
*
*
* SpectralSurface.C
*
* Implementation of class SpectralSurface, a class representing
* a smoothed time-frequency surface that can be used to
* perform cross-synthesis, the filtering of one sound by the
* time-varying spectrum of another.
*
* Kelly Fitz, 21 Dec 2005
* loris@cerlsoundgroup.org
*
* http://www.cerlsoundgroup.org/Loris/
*
*/
#include "SpectralSurface.h"
#include "BreakpointUtils.h"
#include "LorisExceptions.h"
#include "Notifier.h"
#include "Partial.h"
#include <algorithm>
#include <iterator>
namespace Loris {
// ---------------------------------------------------------------------------
// peakAmp - local helper for addPartialAux
// ---------------------------------------------------------------------------
static double peakAmp( const Partial & p )
{
if ( 0 == p.numBreakpoints() )
{
return 0;
}
return std::max_element( p.begin(), p.end(),
BreakpointUtils::compareAmplitudeLess()
).breakpoint().amplitude();
}
// ---------------------------------------------------------------------------
// findemfaster - local helper
// ---------------------------------------------------------------------------
static std::pair< const Partial *, const Partial * >
findemfaster( double freq, double time, const std::vector< Partial > & parray )
{
static std::vector< Partial >::size_type cacheLastHit = 0;
std::vector< Partial >::size_type i = cacheLastHit;
const Partial * p1 = 0;
const Partial * p2 = 0;
if ( parray[i].frequencyAt( time ) < freq )
{
// search up the list
while ( i < parray.size() && parray[i].frequencyAt( time ) < freq )
{
++i;
}
if ( i > 0 )
{
p1 = &parray[i-1];
cacheLastHit = i-1;
}
else
{
p1 = 0;
cacheLastHit = 0;
}
if ( i < parray.size() )
{
p2 = &parray[i];
}
else
{
p2 = 0;
}
}
else
{
// search down the list
while ( i > 0 && parray[i].frequencyAt( time ) > freq )
{
--i;
}
if ( i > 0 || parray[i].frequencyAt( time ) < freq )
{
p1 = &parray[i];
cacheLastHit = i;
}
else
{
p1 = 0;
cacheLastHit = 0;
}
if ( i + 1 < parray.size() )
{
p2 = &parray[i+1];
}
else
{
p2 = 0;
}
}
// debugger << "findemfaster caching " << cacheLastHit << endl;
return std::make_pair(p1, p2);
}
// ---------------------------------------------------------------------------
// smoothInTime - local helper
// ---------------------------------------------------------------------------
static double smoothInTime( const Partial & p, double t )
{
const double spanT = 30; // ms
const int steps = 13;
const double incrT = (2 * spanT) / (steps - 1);
double a = p.amplitudeAt( t );
if ( 0 == a )
{
for (double dehr = -spanT; dehr <= spanT; dehr += incrT )
{
a += p.amplitudeAt( t + ( .001*dehr ) );
}
a = a / steps;
}
return a;
}
// ---------------------------------------------------------------------------
// surfaceAt - local helper
// ---------------------------------------------------------------------------
static double surfaceAt( double f, double t, const std::vector< Partial > & parray )
{
std::pair< const Partial *, const Partial * > both = findemfaster( f, t, parray );
const Partial * p1 = both.first;
const Partial * p2 = both.second;
double moo1 = 0, moo2 = 0, interp = 0;
if ( 0 != p1 && 0 != p2 )
{
interp = (f - p1->frequencyAt( t )) / ( p2->frequencyAt( t ) - p1->frequencyAt( t ) );
moo1 = smoothInTime( *p1, t );
moo2 = smoothInTime( *p2, t );
}
else if ( 0 != p2 )
{
interp = 1;
moo2 = smoothInTime( *p2, t );
moo1 = moo2;
}
else if ( 0 != p1 )
{
interp = 1. / (f - p1->frequencyAt( t ));
moo1 = smoothInTime( *p1, t );
moo2 = 0;
}
else
{
moo1 = moo2 = interp = 0;
}
return ((1-interp)*moo1 + interp*moo2);
}
// ---------------------------------------------------------------------------
// scaleAmplitudes
// ---------------------------------------------------------------------------
//! Scale the amplitude of every Breakpoint in a Partial
//! according to the amplitude of the spectral surface
//! at the corresponding time and frequency.
//!
//! \param p the Partial to modify
//
void SpectralSurface::scaleAmplitudes( Partial & p )
{
const double FreqScale = 1.0 / mStretchFreq;
const double TimeScale = 1.0 / mStretchTime;
Partial::iterator iter;
for ( iter = p.begin(); iter != p.end(); ++iter )
{
Breakpoint & bp = iter.breakpoint();
double f = bp.frequency();
double t = iter.time();
double ampscale = surfaceAt( FreqScale * f, TimeScale * t, mPartials ) / mMaxSurfaceAmp;
double a = bp.amplitude() * ( (1.-mEffect) + (mEffect*ampscale) );
bp.setAmplitude( a );
}
}
// ---------------------------------------------------------------------------
// setAmplitudes
// ---------------------------------------------------------------------------
//! Set the amplitude of every Breakpoint in a Partial
//! equal to the amplitude of the spectral surface
//! at the corresponding time and frequency.
//!
//! \param p the Partial to modify
//
void SpectralSurface::setAmplitudes( Partial & p )
{
const double FreqScale = 1.0 / mStretchFreq;
const double TimeScale = 1.0 / mStretchTime;
Partial::iterator iter;
for ( iter = p.begin(); iter != p.end(); ++iter )
{
Breakpoint & bp = iter.breakpoint();
if ( 0 != bp.amplitude() )
{
double f = bp.frequency();
double t = iter.time();
double surfaceAmp = surfaceAt( FreqScale * f, TimeScale * t, mPartials );
double a = ( bp.amplitude()*(1.-mEffect) ) + ( mEffect*surfaceAmp );
bp.setAmplitude( a );
}
}
}
// --- access/mutation ---
// ---------------------------------------------------------------------------
// frequencyStretch
// ---------------------------------------------------------------------------
//! Return the amount of strecthing in the frequency dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the frequency dimension, values less than 1
//! (but greater than 0) compress the surface in the frequency
//! dimension.
//
double SpectralSurface::frequencyStretch( void ) const
{
return mStretchFreq;
}
// ---------------------------------------------------------------------------
// timeStretch
// ---------------------------------------------------------------------------
//! Return the amount of strecthing in the time dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the time dimension, values less than 1
//! (but greater than 0) compress the surface in the time
//! dimension.
//
double SpectralSurface::timeStretch( void ) const
{
return mStretchTime;
}
// ---------------------------------------------------------------------------
// effect
// ---------------------------------------------------------------------------
//! Return the amount of effect applied by scaleAmplitudes
//! and setAmplitudes (default 1, full effect). Values
//! less than 1 (but greater than 0) reduce the amount of
//! amplitude modified performed by application of the
//! surface. (This is rarely a good way of controlling the
//! amount of the effect.)
//
double SpectralSurface::effect( void ) const
{
return mEffect;
}
// ---------------------------------------------------------------------------
// setFrequencyStretch
// ---------------------------------------------------------------------------
//! Set the amount of strecthing in the frequency dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the frequency dimension, values less than 1
//! (but greater than 0) compress the surface in the frequency
//! dimension.
//!
//! \pre stretch must be positive
//! \param stretch the new stretch factor for the frequency dimension
//
void SpectralSurface::setFrequencyStretch( double stretch )
{
if ( 0 > stretch )
{
Throw( InvalidArgument,
"SpectralSurface frequency stretch must be non-negative." );
}
mStretchFreq = stretch;
}
// ---------------------------------------------------------------------------
// setTimeStretch
// ---------------------------------------------------------------------------
//! Set the amount of strecthing in the time dimension
//! (default 1, no stretching). Values greater than 1 stretch
//! the surface in the time dimension, values less than 1
//! (but greater than 0) compress the surface in the time
//! dimension.
//!
//! \pre stretch must be positive
//! \param stretch the new stretch factor for the time dimension
//
void SpectralSurface::setTimeStretch( double stretch )
{
if ( 0 > stretch )
{
Throw( InvalidArgument,
"SpectralSurface time stretch must be non-negative." );
}
mStretchTime = stretch;
}
// ---------------------------------------------------------------------------
// setEffect
// ---------------------------------------------------------------------------
//! Set the amount of effect applied by scaleAmplitudes
//! and setAmplitudes (default 1, full effect). Values
//! less than 1 (but greater than 0) reduce the amount of
//! amplitude modified performed by application of the
//! surface. (This is rarely a good way of controlling the
//! amount of the effect.)
//!
//! \pre effect must be between 0 and 1, inclusive
//! \param effect the new factor controlling the amount of
//! amplitude modification performed by scaleAmplitudes
//! and setAmplitudes
//
void SpectralSurface::setEffect( double effect )
{
if ( 0 > effect || 1 < effect )
{
Throw( InvalidArgument,
"SpectralSurface effect must be non-negative and not greater than 1." );
}
mEffect = effect;
}
// --- private helpers ---
// ---------------------------------------------------------------------------
// addPartialAux
// ---------------------------------------------------------------------------
// Helper function used by constructor for adding Partials one
// by one. Still have to sort after adding all the Partials
// using this helper! This just adds the Partial and keeps track
// of the largest amplitude seen so far.
//
void SpectralSurface::addPartialAux( const Partial & p )
{
mPartials.push_back( p );
mMaxSurfaceAmp = std::max( mMaxSurfaceAmp, peakAmp( p ) );
}
} //end namespace
|