File: reverbst.cpp

package info (click to toggle)
alsaplayer 0.99.82-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,892 kB
  • sloc: ansic: 40,741; cpp: 14,400; makefile: 983; sh: 796; lex: 751; asm: 45; python: 29; sed: 16
file content (251 lines) | stat: -rw-r--r-- 6,992 bytes parent folder | download | duplicates (2)
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
/*
 *  reverbst.c -- mono reverberation filtration
 *
 *  Written and copywritten by Philip Edelbrock,
 *  Copyright (C) 1999
 *
 *  This file is part of AlsaPlayer.
 *
 *  AlsaPlayer 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 3 of the License, or
 *  (at your option) any later version.
 *
 *  AlsaPlayer 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, see <http://www.gnu.org/licenses/>.
 *
 *  Version 1.0.1: updated licence to GPL3 or later
 *
 */

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <sys/ioctl.h>
#include <unistd.h>
#include <fcntl.h>
#include "CorePlayer.h"

int fbper;
float decayamt;
long sampling=44100;

/* Sound card interface defs and vars */
#define SAMPLING_RATE sampling

int audio_fd;  

/* Left channel Filter design parameters */
#define COMB_L_GAIN_1 (double)-0.40
#define COMB_L_DELAY_1 (-(log10(-(COMB_L_GAIN_1)) * decayamt * SAMPLING_RATE)/ 3.0)

#define COMB_L_GAIN_2 (double)-0.42
#define COMB_L_DELAY_2 (-(log10(-(COMB_L_GAIN_2)) * decayamt * SAMPLING_RATE)/ 3.0)

#define COMB_L_GAIN_3 (double)-0.44
#define COMB_L_DELAY_3 (-(log10(-(COMB_L_GAIN_3)) * decayamt * SAMPLING_RATE)/ 3.0)

#define COMB_L_GAIN_4 (double)-0.60
#define COMB_L_DELAY_4 (-(log10(-(COMB_L_GAIN_4)) * decayamt * SAMPLING_RATE)/ 3.0)

const double COMB_L_GAIN[4]={COMB_L_GAIN_1,COMB_L_GAIN_2,COMB_L_GAIN_3,COMB_L_GAIN_4};
long COMB_L_DELAY[4];

#define MAXDELAY (long)24000


/* Global vars for filters */

double lmem1[MAXDELAY];
double lmem2[MAXDELAY];
double lmem3[MAXDELAY];
double lmem4[MAXDELAY];

long lstep[4]={0,0,0,0};

double lallpassmem1=0;
double lallpassmem2=0;


/* Right channel Filter design parameters */
#define COMB_R_GAIN_1 (double)-0.42
#define COMB_R_DELAY_1 (-(log10(-(COMB_R_GAIN_1)) * decayamt * SAMPLING_RATE)/ 3.0)

#define COMB_R_GAIN_2 (double)-0.47
#define COMB_R_DELAY_2 (-(log10(-(COMB_R_GAIN_2)) * decayamt * SAMPLING_RATE)/ 3.0)

#define COMB_R_GAIN_3 (double)-0.48
#define COMB_R_DELAY_3 (-(log10(-(COMB_R_GAIN_3)) * decayamt * SAMPLING_RATE)/ 3.0)

#define COMB_R_GAIN_4 (double)-0.59
#define COMB_R_DELAY_4 (-(log10(-(COMB_R_GAIN_4)) * decayamt * SAMPLING_RATE)/ 3.0)

const double COMB_R_GAIN[4]={COMB_R_GAIN_1,COMB_R_GAIN_2,COMB_R_GAIN_3,COMB_R_GAIN_4};
long COMB_R_DELAY[4];

/* Mixing value -- Value from 0 to 1 for the ammount of reverb */
#define AMMOUNT ((float)fbper/100.0)

/* Global vars for filters */

double rmem1[MAXDELAY];
double rmem2[MAXDELAY];
double rmem3[MAXDELAY];
double rmem4[MAXDELAY];


long rstep[4]={0,0,0,0};

double rallpassmem1=0;
double rallpassmem2=0;

/* Fill the comb histories with silence */
void initdelays(void) {
 COMB_R_DELAY[0]=(long)COMB_R_DELAY_1;
 COMB_R_DELAY[1]=(long)COMB_R_DELAY_2;
 COMB_R_DELAY[2]=(long)COMB_R_DELAY_3;
 COMB_R_DELAY[3]=(long)COMB_R_DELAY_4;
 COMB_L_DELAY[0]=(long)COMB_L_DELAY_1;
 COMB_L_DELAY[1]=(long)COMB_L_DELAY_2;
 COMB_L_DELAY[2]=(long)COMB_L_DELAY_3;
 COMB_L_DELAY[3]=(long)COMB_L_DELAY_4;
 #ifdef DEBUG
  printf("comb delays: %li,%li,%li,%li  %li,%li,%li,%li\n",
        COMB_L_DELAY[0],COMB_L_DELAY[1],COMB_L_DELAY[2],COMB_L_DELAY[3],
	COMB_R_DELAY[0],COMB_R_DELAY[1],COMB_R_DELAY[2],COMB_R_DELAY[3]);
 #endif
 if ((COMB_R_DELAY[0]>MAXDELAY)||(COMB_R_DELAY[1]>MAXDELAY)||
     (COMB_R_DELAY[2]>MAXDELAY)||(COMB_R_DELAY[3]>MAXDELAY)||
     (COMB_L_DELAY[0]>MAXDELAY)||(COMB_L_DELAY[1]>MAXDELAY)||
     (COMB_L_DELAY[2]>MAXDELAY)||(COMB_L_DELAY[3]>MAXDELAY)) {
       printf("Arrays not large enough! Increase MAXDELAY.\n"); exit(1); }
}

/* Filter functions */
double allpass1(double sample,int rl) {
double temp;

 if (rl) {
  temp=lallpassmem1 - sample;
  lallpassmem1=0.70710678 * (sample + lallpassmem1); 
  return temp;
 } else {
  temp=rallpassmem1 - sample;
  rallpassmem1=0.70710678 * (sample + rallpassmem1); 
  return temp;
 }
}

double allpass2(double sample,int rl) {
double temp;

 if (rl) {
  temp=lallpassmem2 - sample;
  lallpassmem2=0.70710678 * (sample + lallpassmem2); 
  return temp;
 } else {
  temp=rallpassmem2 - sample;
  rallpassmem2=0.70710678 * (sample + rallpassmem2); 
  return temp;
 }
}


double comb(double sample,long combid,int rl) {
double temp;
double *memtemp=NULL;

 if (rl == 0) {
  if (combid == 0) memtemp=lmem1;
  if (combid == 1) memtemp=lmem2;
  if (combid == 2) memtemp=lmem3;
  if (combid == 3) memtemp=lmem4;
 } else {
  if (combid == 0) memtemp=rmem1;
  if (combid == 1) memtemp=rmem2;
  if (combid == 2) memtemp=rmem3;
  if (combid == 3) memtemp=rmem4;
 }

 if (rl == 0) {
  memtemp[lstep[combid]]=sample + 
	(COMB_L_GAIN[combid] * memtemp[((lstep[combid] + 1) % COMB_L_DELAY[combid])]);
  temp= memtemp[((lstep[combid] + 1) % COMB_L_DELAY[combid])];
  lstep[combid]++;
  if (lstep[combid] >= COMB_L_DELAY[combid]) lstep[combid]=0;
  return temp;
 } else {
  memtemp[rstep[combid]]=sample + 
	(COMB_R_GAIN[combid] * memtemp[((rstep[combid] + 1) % COMB_R_DELAY[combid])]);
  temp= memtemp[((rstep[combid] + 1) % COMB_R_DELAY[combid])];
  rstep[combid]++;
  if (rstep[combid] >= COMB_R_DELAY[combid]) rstep[combid]=0;
  return temp;
 }
}

/* Put the filters together here */
double reverb(double sample,int rl) {

//return (comb(sample,0,rl) +comb(sample,3,rl))/2.0;

  return ((1.0 - AMMOUNT) * sample) + (AMMOUNT * allpass2(
		allpass1(
		  (comb(sample,0,rl) + comb(sample,1,rl) + comb(sample,2,rl) + comb(sample,3,rl)) / 4
		,rl)
	,rl));
}


/* Main sampling/playback loop */
int init_reverb() {
   //int i,len;
   char samprate[255]="44100\0";
   char fbdist[255]="20\0";
   char decay[255]="2.000\0";
   //long c;

/* Convert args */
 if (sscanf(samprate,"%li",&sampling) == 0) {printf("Bad samprate arg.\n");exit(1);}
 if (sscanf(fbdist,"%i",&fbper) == 0) {printf("Bad fbdist arg.\n");exit(1);}
 if (sscanf(decay,"%f",&decayamt) == 0) {printf("Bad decay arg.\n");exit(1);}

 if (sampling < 4000) {printf("Bad samprate value.\n");exit(1);}
 if ((fbper > 100) || (fbper < 0)) {printf("Bad fbdist value.\n");exit(1);}
 if (decayamt < 0) {printf("Bad decay value.\n");exit(1);}

 printf("\nUsing these parameters: samprate=%ld fbdist=%d decay=%f\n\n",sampling,fbper,decayamt);

 initdelays();
 return 0;
}

bool reverb_func(void *arg, void *data, int size)
{
	// This is an optimization hack
	CorePlayer *p = (CorePlayer *)arg;
	if (!p->IsActive())
		return true;
	// End hack	

  	short *buffer = (short *)data;
 	long c;
	for (int i=0; i < size/2; i++) {
		c = buffer[i];
		long r;
		if (i % 2) 
			r = (long)(reverb(c, 1));		
		else
			r = (long)(reverb(c, 0));
		if (r > 32767) r = 32767;
		else
		if (r < -32768) r = -32768;
		buffer[i] = (short)r;
	}
	return true;
}