File: pan.c

package info (click to toggle)
sox 12.17.3-4woody2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,048 kB
  • ctags: 2,183
  • sloc: ansic: 24,796; sh: 3,005; makefile: 228; perl: 133
file content (402 lines) | stat: -rw-r--r-- 9,358 bytes parent folder | download
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
/*
 * (c) 20/03/2000 Fabien COELHO <fabien@coelho.net> for sox.
 *
 * Same copyright as SOX. See Sox (and Sun?;-)
 *
 * Change panorama of sound file with basic linear volume interpolation.
 * The human ear is not sensible to phases? What about delay? too short?
 * 
 * Volume is kept constant (?). 
 * Beware of saturations!
 * Operations are carried out on floats.
 * Can handle different number of channels.
 * Cannot handle rate change.
 *
 * Initially based on avg effect. 
 * pan 0.0 basically behaves as avg.
 */

#include "st_i.h"

/* type for computations.
   float mantissa is okay for 8 or 16 bits signals.
   maybe a little bit short for 24 bits.
   switch to double if you're not happy.
 */
#ifndef PAN_FLOAT
#define PAN_FLOAT float /* float or double */
#define PAN_FLOAT_SCAN "%f" /* "%f" or "%lf" */
#endif

/* constants */

#define TWO      ((PAN_FLOAT)(2.0e0))
#define ONEHALF  ((PAN_FLOAT)(1.5e0))
#define ONE      ((PAN_FLOAT)(1.0e0))
#define MONE     ((PAN_FLOAT)(-1.0e0))
#define HALF     ((PAN_FLOAT)(0.5e0))
#define QUARTER  ((PAN_FLOAT)(0.25e0))
#define ZERO     ((PAN_FLOAT)(0.0e0))

/* error message */

#define PAN_USAGE "Usage: pan direction (in [-1.0 .. 1.0])"

/* structure to hold pan parameter */

typedef struct {
    /* pan option
     */
    PAN_FLOAT dir; /* direction, from left (-1.0) to right (1.0) */

    /* local data
     */
    int clipped;   /* number of clipped values */
} * pan_t;

/*
 * Process options
 */
int st_pan_getopts(eff_t effp, int n, char **argv) 
{
    pan_t pan = (pan_t) effp->priv; 
    
    pan->dir = ZERO; /* default is no change */
    pan->clipped = 0;
    
    if (n && (!sscanf(argv[0], PAN_FLOAT_SCAN, &pan->dir) || 
	      pan->dir < MONE || pan->dir > ONE))
    {
	st_fail(PAN_USAGE);
	return ST_EOF;
    }

    return ST_SUCCESS;
}

/*
 * Start processing
 */
int st_pan_start(eff_t effp)
{
    if (effp->outinfo.channels==1)
	st_warn("PAN onto a mono channel...");

    if (effp->outinfo.rate != effp->ininfo.rate)
    {
	st_fail("PAN cannot handle different rates (in=%ld, out=%ld)"
	     " use resample or rate", effp->ininfo.rate, effp->outinfo.rate);
	return ST_EOF;
    }

    return ST_SUCCESS;
}


/* clip value if necessary. see comments about such a function in vol.c
 * Okay, it might be quite slow to have such a function for so small
 * a task. Hopefully the function can be inlined by the compiler?
 */
static st_sample_t clip(pan_t pan, PAN_FLOAT value)
{
    if (value < -ST_SAMPLE_MAX) 
    {
	pan->clipped++;
	return -ST_SAMPLE_MAX;
    }
    else if (value > ST_SAMPLE_MAX) 
    {
	pan->clipped++;
	return ST_SAMPLE_MAX;
    } /* else */

    return (st_sample_t) value;
}

#ifndef MIN
#define MIN(s1,s2) ((s1)<(s2)?(s1):(s2))
#endif

#define UNEXPECTED_CHANNELS \
    st_fail("unexpected number of channels (in=%d, out=%d)", ich, och); \
    return ST_EOF

/*
 * Process either isamp or osamp samples, whichever is smaller.
 */
int st_pan_flow(eff_t effp, st_sample_t *ibuf, st_sample_t *obuf, 
                st_size_t *isamp, st_size_t *osamp)
{
    pan_t pan = (pan_t) effp->priv;
    register st_size_t len;
    register int done, ich, och;
    register PAN_FLOAT left, right, dir, hdir;
    
    dir   = pan->dir;    /* -1   <=  dir  <= 1   */
    hdir  = HALF * dir;  /* -0.5 <=  hdir <= 0.5 */
    left  = HALF - hdir; /*  0   <=  left <= 1   */
    right = HALF + hdir; /*  0   <= right <= 1   */

    ich = effp->ininfo.channels;
    och = effp->outinfo.channels;

    len = MIN(*osamp/och,*isamp/ich);

    /* report back how much is processed. */
    *isamp = len*ich;
    *osamp = len*och;
    
    /* 9 different cases to handle: (1,2,4) X (1,2,4) */
    switch (och) {
    case 1: /* pan on mono channel... not much sense. just avg. */
	switch (ich) {
	case 1: /* simple copy */
	    for (done=0; done<len; done++)
		*obuf++ = *ibuf++;
	    break;
	case 2: /* average 2 */
	    for (done=0; done<len; done++)
		*obuf++ = clip(pan, HALF*ibuf[0] + HALF*ibuf[1]),
		    ibuf += 2;
	    break;
	case 4: /* average 4 */
	    for (done=0; done<len; done++)
		*obuf++ = clip(pan, 
			       QUARTER*ibuf[0] + QUARTER*ibuf[1] + 
			       QUARTER*ibuf[2] + QUARTER*ibuf[3]),
		    ibuf += 4;
	    break;
	default:
	    UNEXPECTED_CHANNELS;
	    break;
	} /* end first switch in channel */
	break;
    case 2:
	switch (ich) {
	case 1: /* linear */
	    for (done=0; done<len; done++)
	    {
		obuf[0] = clip(pan, left * ibuf[0]);
		obuf[1] = clip(pan, right * ibuf[0]);
		obuf += 2;
		ibuf++;
	    }
	    break;
	case 2: /* linear panorama. 
		 * I'm not sure this is the right way to do it.
		 */
	    if (dir <= ZERO) /* to the left */
	    {
		register PAN_FLOAT volume, cll, clr, cr;

		volume = ONE - HALF*dir;
		cll = volume*(ONEHALF-left);
		clr = volume*(left-HALF);
		cr  = volume*(ONE+dir);

		for (done=0; done<len; done++)
		{
		    obuf[0] = clip(pan, cll * ibuf[0] + clr * ibuf[1]);
		    obuf[1] = clip(pan, cr * ibuf[1]);
		    obuf += 2;
		    ibuf += 2;
		}
	    }
	    else /* to the right */
	    {
		register PAN_FLOAT volume, cl, crl, crr;

		volume = ONE + HALF*dir;
		cl  = volume*(ONE-dir);
		crl = volume*(right-HALF);
		crr = volume*(ONEHALF-right);

		for (done=0; done<len; done++)
		{
		    obuf[0] = clip(pan, cl * ibuf[0]);
		    obuf[1] = clip(pan, crl * ibuf[0] + crr * ibuf[1]);
		    obuf += 2;
		    ibuf += 2;
		}
	    }
	    break;
	case 4:
	    if (dir <= ZERO) /* to the left */
	    {
		register PAN_FLOAT volume, cll, clr, cr;

		volume = ONE - HALF*dir;
		cll = volume*(ONEHALF-left);
		clr = volume*(left-HALF);
		cr  = volume*(ONE+dir);

		for (done=0; done<len; done++)
		{
		    register PAN_FLOAT ibuf0, ibuf1;

		    /* build stereo signal */
		    ibuf0 = HALF*ibuf[0] + HALF*ibuf[2];
		    ibuf1 = HALF*ibuf[1] + HALF*ibuf[3];

		    /* pan it */
		    obuf[0] = clip(pan, cll * ibuf0 + clr * ibuf1);
		    obuf[1] = clip(pan, cr * ibuf1);
		    obuf += 2;
		    ibuf += 4;
		}
	    }
	    else /* to the right */
	    {
		register PAN_FLOAT volume, cl, crl, crr;

		volume = ONE + HALF*dir;
		cl  = volume*(ONE-dir);
		crl = volume*(right-HALF);
		crr = volume*(ONEHALF-right);

		for (done=0; done<len; done++)
		{
		    register PAN_FLOAT ibuf0, ibuf1;

		    ibuf0 = HALF*ibuf[0] + HALF*ibuf[2];
		    ibuf1 = HALF*ibuf[1] + HALF*ibuf[3];

		    obuf[0] = clip(pan, cl * ibuf0);
		    obuf[1] = clip(pan, crl * ibuf0 + crr * ibuf1);
		    obuf += 2;
		    ibuf += 4;
		}
	    }
	    break;
	default:
	    UNEXPECTED_CHANNELS;
	    break;
	} /* end second switch in channel */
	break;
    case 4:
	switch (ich) {
	case 1: /* linear */
	    {
		register PAN_FLOAT cr, cl;

		cl = HALF*left;
		cr = HALF*right;

		for (done=0; done<len; done++)
		{
		    obuf[0] = clip(pan, cl * ibuf[0]);
		    obuf[2] = obuf[0];
		    obuf[1] = clip(pan, cr * ibuf[0]);
		    ibuf[3] = obuf[1];
		    obuf += 4;
		    ibuf++;
		}
	    }
	    break;
	case 2: /* simple linear panorama */
	    if (dir <= ZERO) /* to the left */
	    {
		register PAN_FLOAT volume, cll, clr, cr;

		volume = HALF - QUARTER*dir;
		cll = volume * (ONEHALF-left);
		clr = volume * (left-HALF);
		cr  = volume * (ONE+dir);

		for (done=0; done<len; done++)
		{
		    obuf[0] = clip(pan, cll * ibuf[0] + clr * ibuf[1]);
		    obuf[2] = obuf[0];
		    obuf[1] = clip(pan, cr * ibuf[1]);
		    ibuf[3] = obuf[1];
		    obuf += 4;
		    ibuf += 2;
		}
	    }
	    else /* to the right */
	    {
		register PAN_FLOAT volume, cl, crl, crr;

		volume = HALF + QUARTER*dir;
		cl  = volume * (ONE-dir);
		crl = volume * (right-HALF);
		crr = volume * (ONEHALF-right);

		for (done=0; done<len; done++)
		{
		    obuf[0] = clip(pan, cl * ibuf[0]);
		    obuf[2] = obuf[0];
		    obuf[1] = clip(pan, crl * ibuf[0] + crr * ibuf[1]);
		    ibuf[3] = obuf[1];
		    obuf += 4;
		    ibuf += 2;
		}
	    }
	    break;
	case 4:
	    /* maybe I could improve the formula to reverse...
	       also, turn only by quarters.
	     */
	    if (dir <= ZERO) /* to the left */
	    {
		register PAN_FLOAT cown, cright;

		cright = -dir;
		cown = ONE + dir;

		for (done=0; done<len; done++)
		{
		    obuf[0] = clip(pan, cown*ibuf[0] + cright*ibuf[1]);
		    obuf[1] = clip(pan, cown*ibuf[1] + cright*ibuf[3]);
		    obuf[2] = clip(pan, cown*ibuf[2] + cright*ibuf[0]);
		    obuf[3] = clip(pan, cown*ibuf[3] + cright*ibuf[2]);
		    obuf += 4;
		    ibuf += 4;		    
		}
	    }
	    else /* to the right */
	    {
		register PAN_FLOAT cleft, cown;

		cleft = dir;
		cown = ONE - dir;

		for (done=0; done<len; done++)
		{
		    obuf[0] = clip(pan, cleft*ibuf[2] + cown*ibuf[0]);
		    obuf[1] = clip(pan, cleft*ibuf[0] + cown*ibuf[1]);
		    obuf[2] = clip(pan, cleft*ibuf[3] + cown*ibuf[2]);
		    obuf[3] = clip(pan, cleft*ibuf[1] + cown*ibuf[3]);
		    obuf += 4;
		    ibuf += 4;
		}
	    }
	    break;
	default:
	    UNEXPECTED_CHANNELS;
	    break;
	} /* end third switch in channel */
	break;
    default:
	UNEXPECTED_CHANNELS;
	break;
    } /* end switch out channel */

    return ST_SUCCESS;
}

/*
 * Do anything required when you stop reading samples.  
 * Don't close input file! 
 *
 * Should have statistics on right, left, and output amplitudes.
 */
int st_pan_stop(eff_t effp)
{
    pan_t pan = (pan_t) effp->priv;
    if (pan->clipped) {
	st_warn("PAN clipped %d values, maybe adjust volume?",
	     pan->clipped);
    }
    return ST_SUCCESS;
}