File: Vocoder.C

package info (click to toggle)
rakarrack 0.6.1-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,136 kB
  • sloc: cpp: 27,705; sh: 787; makefile: 303
file content (519 lines) | stat: -rw-r--r-- 11,366 bytes parent folder | download | duplicates (5)
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/*
 
  Vocoder.C - Vocoder effect
  Author: Ryam Billing & Josep Andreu
  
  Adapted effect structure of ZynAddSubFX - a software synthesizer
  Author: Nasca Octavian Paul
  
  This program is free software; you can redistribute it and/or modify
  it under the terms of version 2 of the GNU General Public License 
  as published by the Free Software Foundation.

  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 (version 2) for more details.

  You should have received a copy of the GNU General Public License (version 2)
  along with this program; if not, write to the Free Software Foundation,
  Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA

*/

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "Vocoder.h"

Vocoder::Vocoder (float * efxoutl_, float * efxoutr_, float *auxresampled_,int bands, int DS, int uq, int dq)
{

  adjust(DS);

  VOC_BANDS = bands;
  efxoutl = efxoutl_;
  efxoutr = efxoutr_;
  auxresampled = auxresampled_;
  //default values
  Ppreset = 0;
  Pvolume = 50;
  Plevel = 0;
  Pinput = 0;
  Ppanning = 64;
  Plrcross = 100;
  
  filterbank = (fbank *) malloc(sizeof(fbank) * VOC_BANDS);
  tmpl = (float *) malloc (sizeof (float) * nPERIOD);
  tmpr = (float *) malloc (sizeof (float) * nPERIOD);
  tsmpsl = (float *) malloc (sizeof (float) * nPERIOD);
  tsmpsr = (float *) malloc (sizeof (float) * nPERIOD);
  tmpaux = (float *) malloc (sizeof (float) * nPERIOD);



  Pmuffle = 10;
      float tmp = 0.01f;  //10 ms decay time on peak detectors
      alpha = ncSAMPLE_RATE/(ncSAMPLE_RATE + tmp);
      beta = 1.0f - alpha; 
      prls = beta;
      gate = 0.005f;


  tmp = 0.05f; //50 ms att/rel on compressor
  calpha =  ncSAMPLE_RATE/(ncSAMPLE_RATE + tmp);
  cbeta = 1.0f - calpha;
  cthresh = 0.25f;
  cpthresh = cthresh; //dynamic threshold
  cratio = 0.25f;
  

  float center;
  float qq;
  
  A_Resample = new Resample(dq);
  U_Resample = new Resample(dq);
  D_Resample = new Resample(uq);

  
  for (int i = 0; i < VOC_BANDS; i++)
    {
      center = (float) i * 20000.0f/((float) VOC_BANDS);
      qq = 60.0f;

      filterbank[i].l = new AnalogFilter (4, center, qq, 0);
      filterbank[i].l->setSR(nSAMPLE_RATE);
      filterbank[i].r = new AnalogFilter (4, center, qq, 0);
      filterbank[i].r->setSR(nSAMPLE_RATE);
      filterbank[i].aux = new AnalogFilter (4, center, qq, 0);
      filterbank[i].aux->setSR(nSAMPLE_RATE);
    };
    
    vlp = new AnalogFilter (2, 4000.0f, 1.0f, 1);
    vhp = new AnalogFilter (3, 200.0f, 0.707f, 1);

  vlp->setSR(nSAMPLE_RATE);
  vhp->setSR(nSAMPLE_RATE);
 
   setbands(VOC_BANDS, 200.0f, 4000.0f);
   setpreset (Ppreset);

};

Vocoder::~Vocoder ()
{
};

/*
 * Cleanup the effect
 */
void
Vocoder::cleanup ()
{
  for(int k=0;k<VOC_BANDS; k++)
  {
      filterbank[k].l->cleanup();
      filterbank[k].r->cleanup();
      filterbank[k].aux->cleanup();
      filterbank[k].speak = 0.0f;
      filterbank[k].gain = 0.0f;
      filterbank[k].oldgain = 0.0f;
	
  }
 vhp->cleanup();
 vlp->cleanup();

 compeak = compg = compenv = oldcompenv = 0.0f;

};


void
Vocoder::adjust(int DS)
{

     DS_state=DS;


switch(DS)
{
   
     case 0:
      nPERIOD = PERIOD;
      nSAMPLE_RATE = SAMPLE_RATE;
      nfSAMPLE_RATE = fSAMPLE_RATE;
      break;

     case 1:
      nPERIOD = lrintf(fPERIOD*96000.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 96000;
      nfSAMPLE_RATE = 96000.0f;
      break;


     case 2:
      nPERIOD = lrintf(fPERIOD*48000.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 48000;
      nfSAMPLE_RATE = 48000.0f;
      break;

     case 3:
      nPERIOD = lrintf(fPERIOD*44100.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 44100;
      nfSAMPLE_RATE = 44100.0f;
      break;

     case 4:
      nPERIOD = lrintf(fPERIOD*32000.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 32000;
      nfSAMPLE_RATE = 32000.0f;
      break;

     case 5:
      nPERIOD = lrintf(fPERIOD*22050.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 22050;
      nfSAMPLE_RATE = 22050.0f;
      break;

     case 6:
      nPERIOD = lrintf(fPERIOD*16000.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 16000;
      nfSAMPLE_RATE = 16000.0f;
      break;

     case 7:
      nPERIOD = lrintf(fPERIOD*12000.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 12000;
      nfSAMPLE_RATE = 12000.0f;
      break;

     case 8:
      nPERIOD = lrintf(fPERIOD*8000.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 8000;
      nfSAMPLE_RATE = 8000.0f;
      break;

     case 9:
      nPERIOD = lrintf(fPERIOD*4000.0f/fSAMPLE_RATE);
      nSAMPLE_RATE = 4000;
      nfSAMPLE_RATE = 4000.0f;
      break;

}

      ncSAMPLE_RATE = 1.0f / nfSAMPLE_RATE;

      u_up= (double)nPERIOD / (double)PERIOD;
      u_down= (double)PERIOD / (double)nPERIOD;


}




/*
 * Effect output
 */
void
Vocoder::out (float * smpsl, float * smpsr)
{
  int i, j;

  float tempgain;
  float maxgain=0.0f;
  float auxtemp, tmpgain;
   
   
   if(DS_state != 0)
   {
     A_Resample->mono_out(auxresampled,tmpaux,PERIOD,u_up,nPERIOD);
   }
   else
   memcpy(tmpaux,auxresampled,sizeof(float)*nPERIOD);


   for (i = 0; i<nPERIOD; i++)    //apply compression to auxresampled
   {
   auxtemp = input * tmpaux[i];
   if(fabs(auxtemp > compeak)) compeak = fabs(auxtemp);   //First do peak detection on the signal
   compeak *= prls;
   compenv = cbeta * oldcompenv + calpha * compeak;       //Next average into envelope follower
   oldcompenv = compenv;
   
   if(compenv > cpthresh)                                //if envelope of signal exceeds thresh, then compress
   {
   compg = cpthresh + cpthresh*(compenv - cpthresh)/compenv; 
   cpthresh = cthresh + cratio*(compg - cpthresh);   //cpthresh changes dynamically
   tmpgain = compg/compenv;
   }
   else
   {
   tmpgain = 1.0f;
   }


   
   if(compenv < cpthresh) cpthresh = compenv;
   if(cpthresh < cthresh) cpthresh = cthresh;
   
   tmpaux[i] = auxtemp * tmpgain;   

   tmpaux[i]=vlp->filterout_s(tmpaux[i]);
   tmpaux[i]=vhp->filterout_s(tmpaux[i]);

   };


      //End compression
      
   auxtemp = 0.0f;

   if(DS_state != 0)
   {
     U_Resample->out(smpsl,smpsr,tsmpsl,tsmpsr,PERIOD,u_up);
   }
  else
  {
   memcpy(tsmpsl,smpsl,sizeof(float)*nPERIOD);
   memcpy(tsmpsr,smpsr,sizeof(float)*nPERIOD);
  } 


   memset(tmpl,0,sizeof(float)*nPERIOD);
   memset(tmpr,0,sizeof(float)*nPERIOD);    



    for (j = 0; j < VOC_BANDS; j++)
    {

      for (i = 0; i<nPERIOD; i++)
       { 
       auxtemp = tmpaux[i];
       
       if(filterbank[j].speak < gate) filterbank[j].speak = 0.0f;  //gate 
       if(auxtemp>maxgain) maxgain = auxtemp; //vu meter level.    
           
       auxtemp = filterbank[j].aux->filterout_s(auxtemp);       
       if(fabs(auxtemp) > filterbank[j].speak) filterbank[j].speak = fabs(auxtemp);  //Leaky Peak detector
 
       filterbank[j].speak*=prls;

       filterbank[j].gain = beta * filterbank[j].oldgain + alpha * filterbank[j].speak;   
       filterbank[j].oldgain = filterbank[j].gain; 

       
       tempgain = (1.0f-ringworm)*filterbank[j].oldgain+ringworm*auxtemp; 

       tmpl[i] +=filterbank[j].l->filterout_s(tsmpsl[i])*tempgain;
       tmpr[i] +=filterbank[j].r->filterout_s(tsmpsr[i])*tempgain;   

       };
       
 
   };

   
       for (i = 0; i<nPERIOD; i++)
       { 
       tmpl[i]*=lpanning*level;
       tmpr[i]*=rpanning*level;       
       };


    if(DS_state != 0)
   {
     D_Resample->out(tmpl,tmpr,efxoutl,efxoutr,nPERIOD,u_down);
   }
   else
   {   
     memcpy(efxoutl,tmpl,sizeof(float)*nPERIOD);
     memcpy(efxoutr,tmpr,sizeof(float)*nPERIOD);
   }

      vulevel = (float)CLAMP(rap2dB(maxgain), -48.0, 15.0); 



};

void
Vocoder::setbands (int numbands, float startfreq, float endfreq)
{
  float start = startfreq;   //useful variables
  float endband = endfreq;
  float fnumbands = (float) numbands;
  float output[VOC_BANDS + 1];
  int k;
  
  //calculate intermediate values
  float pwer = logf(endband/start)/log(2.0f);
  
  for(k=0;k<=VOC_BANDS; k++) output[k] = start*powf(2.0f, ((float) k)*pwer/fnumbands); 
  for(k=0;k<VOC_BANDS; k++)
  {
        filterbank[k].sfreq = output[k] + (output[k+1] - output[k])*0.5f;
        filterbank[k].sq = filterbank[k].sfreq/(output[k+1] - output[k]);
	
      filterbank[k].l->setfreq_and_q (filterbank[k].sfreq, filterbank[k].sq);
      filterbank[k].r->setfreq_and_q (filterbank[k].sfreq, filterbank[k].sq);
      filterbank[k].aux->setfreq_and_q (filterbank[k].sfreq, filterbank[k].sq);	
  }
  cleanup();

}

/*
 * Parameter control
 */
void
Vocoder::setvolume (int Pvolume)
{
  this->Pvolume = Pvolume;
  outvolume = (float)Pvolume / 127.0f;
  if (Pvolume == 0)
    cleanup ();

};

void
Vocoder::setpanning (int Ppanning)
{
  this->Ppanning = Ppanning;
  lpanning = ((float)Ppanning + 0.5f) / 127.0f;
  rpanning = 1.0f - lpanning;
};


void
Vocoder::init_filters()
{
 float ff, qq;
 
  for (int ii = 0; ii < VOC_BANDS; ii++)
    {
      ff = filterbank[ii].sfreq;
      qq = filterbank[ii].sq;
      filterbank[ii].l->setfreq_and_q (ff, qq);
      filterbank[ii].r->setfreq_and_q (ff, qq);
      filterbank[ii].aux->setfreq_and_q (ff, qq);
    };

}

void
Vocoder::adjustq(float q)
{
 
  for (int ii = 0; ii < VOC_BANDS; ii++)
    {
      filterbank[ii].l->setq (q);
      filterbank[ii].r->setq (q);
      filterbank[ii].aux->setq (q);
    };

}

void
Vocoder::setpreset (int npreset)
{
  const int PRESET_SIZE = 7;
  const int NUM_PRESETS = 4;
  int presets[NUM_PRESETS][PRESET_SIZE] = {
    //Vocoder 1
    {0, 64, 10, 70, 70, 40, 0},
    //Vocoder 2
    {0, 64, 14, 80, 70, 40, 32},
    //Vocoder 3
    {0, 64, 20, 90, 70, 40, 64},
    //Vocoder 4
    {0, 64, 30, 100, 70, 40, 127}
  };

  if(npreset>NUM_PRESETS-1)  
    {   
     Fpre->ReadPreset(35,npreset-NUM_PRESETS+1);    
     for (int n = 0; n < PRESET_SIZE; n++)    
     changepar (n, pdata[n]);    
    }    
  else                                      
  {     
  for (int n = 0; n < PRESET_SIZE; n++)
  changepar (n, presets[npreset][n]);
  }

  Ppreset = npreset;
};


void
Vocoder::changepar (int npar, int value)
{
float tmp = 0;
  switch (npar)
    {
    case 0:
      setvolume (value);
      break;
    case 1:
      setpanning (value);
      break;
    case 2:
      Pmuffle = value;
      tmp = (float) Pmuffle;
      tmp *= 0.0001f + tmp/64000;
      alpha = ncSAMPLE_RATE/(ncSAMPLE_RATE + tmp);
      beta = 1.0f - alpha; 
      break;
    case 3: 
      Pqq = value;
      tmp = (float) value;
      adjustq(tmp);
      break;
    case 4:
      Pinput = value;
      input = dB2rap (75.0f * (float)Pinput / 127.0f - 40.0f);    
      break;      
    case 5:
      Plevel = value;
      level = dB2rap (60.0f * (float)Plevel / 127.0f - 40.0f);    
      break;      

    case 6:
      Pring = value;
      ringworm = (float) Pring/127.0f;    
      break; 
   };
};

int
Vocoder::getpar (int npar)
{
  switch (npar)
    {
    case 0:
      return (Pvolume);
      break;
    case 1:
      return (Ppanning);
      break;
    case 2:
      return(Pmuffle);
      break;
    case 3:
      return(Pqq); 
      break;  
    case 4:
      return (Pinput);
      break;
    case 5:
      return (Plevel);
      break;
    case 6:
      return (Pring);
      break; 

    };
  return (0);			//in case of bogus parameter number
};