Skip to content

Latest commit

 

History

History
1545 lines (1416 loc) · 32.8 KB

SDL_audiocvt.c

File metadata and controls

1545 lines (1416 loc) · 32.8 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library 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
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
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
/* Functions for audio drivers to perform runtime conversion of audio format */
#include "SDL_audio.h"
/* Effectively mix right and left channels into a single channel */
void SDL_ConvertMono(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Sint32 sample;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting to mono\n");
#endif
switch (format&0x8018) {
case AUDIO_U8: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
for ( i=cvt->len_cvt/2; i; --i ) {
sample = src[0] + src[1];
if ( sample > 255 ) {
*dst = 255;
} else {
Feb 24, 2006
Feb 24, 2006
50
*dst = (Uint8)sample;
Apr 26, 2001
Apr 26, 2001
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
}
src += 2;
dst += 1;
}
}
break;
case AUDIO_S8: {
Sint8 *src, *dst;
src = (Sint8 *)cvt->buf;
dst = (Sint8 *)cvt->buf;
for ( i=cvt->len_cvt/2; i; --i ) {
sample = src[0] + src[1];
if ( sample > 127 ) {
*dst = 127;
} else
if ( sample < -128 ) {
*dst = -128;
} else {
Feb 24, 2006
Feb 24, 2006
71
*dst = (Sint8)sample;
Apr 26, 2001
Apr 26, 2001
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
}
src += 2;
dst += 1;
}
}
break;
case AUDIO_U16: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/4; i; --i ) {
sample = (Uint16)((src[0]<<8)|src[1])+
(Uint16)((src[2]<<8)|src[3]);
if ( sample > 65535 ) {
dst[0] = 0xFF;
dst[1] = 0xFF;
} else {
dst[1] = (sample&0xFF);
sample >>= 8;
dst[0] = (sample&0xFF);
}
src += 4;
dst += 2;
}
} else {
for ( i=cvt->len_cvt/4; i; --i ) {
sample = (Uint16)((src[1]<<8)|src[0])+
(Uint16)((src[3]<<8)|src[2]);
if ( sample > 65535 ) {
dst[0] = 0xFF;
dst[1] = 0xFF;
} else {
dst[0] = (sample&0xFF);
sample >>= 8;
dst[1] = (sample&0xFF);
}
src += 4;
dst += 2;
}
}
}
break;
case AUDIO_S16: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/4; i; --i ) {
sample = (Sint16)((src[0]<<8)|src[1])+
(Sint16)((src[2]<<8)|src[3]);
if ( sample > 32767 ) {
dst[0] = 0x7F;
dst[1] = 0xFF;
} else
if ( sample < -32768 ) {
dst[0] = 0x80;
dst[1] = 0x00;
} else {
dst[1] = (sample&0xFF);
sample >>= 8;
dst[0] = (sample&0xFF);
}
src += 4;
dst += 2;
}
} else {
for ( i=cvt->len_cvt/4; i; --i ) {
sample = (Sint16)((src[1]<<8)|src[0])+
(Sint16)((src[3]<<8)|src[2]);
if ( sample > 32767 ) {
dst[1] = 0x7F;
dst[0] = 0xFF;
} else
if ( sample < -32768 ) {
dst[1] = 0x80;
dst[0] = 0x00;
} else {
dst[0] = (sample&0xFF);
sample >>= 8;
dst[1] = (sample&0xFF);
}
src += 4;
dst += 2;
}
}
}
break;
}
cvt->len_cvt /= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
Aug 21, 2004
Aug 21, 2004
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* Discard top 4 channels */
void SDL_ConvertStrip(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Sint32 lsample, rsample;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting down to stereo\n");
#endif
switch (format&0x8018) {
case AUDIO_U8: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
for ( i=cvt->len_cvt/6; i; --i ) {
Feb 24, 2006
Feb 24, 2006
188
189
dst[0] = src[0];
dst[1] = src[1];
Aug 21, 2004
Aug 21, 2004
190
191
192
193
194
195
196
197
198
199
200
201
src += 6;
dst += 2;
}
}
break;
case AUDIO_S8: {
Sint8 *src, *dst;
src = (Sint8 *)cvt->buf;
dst = (Sint8 *)cvt->buf;
for ( i=cvt->len_cvt/6; i; --i ) {
Feb 24, 2006
Feb 24, 2006
202
203
dst[0] = src[0];
dst[1] = src[1];
Aug 21, 2004
Aug 21, 2004
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
src += 6;
dst += 2;
}
}
break;
case AUDIO_U16: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/12; i; --i ) {
lsample = (Uint16)((src[0]<<8)|src[1]);
rsample = (Uint16)((src[2]<<8)|src[3]);
dst[1] = (lsample&0xFF);
lsample >>= 8;
dst[0] = (lsample&0xFF);
dst[3] = (rsample&0xFF);
rsample >>= 8;
dst[2] = (rsample&0xFF);
src += 12;
dst += 4;
}
} else {
for ( i=cvt->len_cvt/12; i; --i ) {
lsample = (Uint16)((src[1]<<8)|src[0]);
rsample = (Uint16)((src[3]<<8)|src[2]);
dst[0] = (lsample&0xFF);
lsample >>= 8;
dst[1] = (lsample&0xFF);
dst[2] = (rsample&0xFF);
rsample >>= 8;
dst[3] = (rsample&0xFF);
src += 12;
dst += 4;
}
}
}
break;
case AUDIO_S16: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/12; i; --i ) {
lsample = (Sint16)((src[0]<<8)|src[1]);
rsample = (Sint16)((src[2]<<8)|src[3]);
dst[1] = (lsample&0xFF);
lsample >>= 8;
dst[0] = (lsample&0xFF);
dst[3] = (rsample&0xFF);
rsample >>= 8;
dst[2] = (rsample&0xFF);
src += 12;
dst += 4;
}
} else {
for ( i=cvt->len_cvt/12; i; --i ) {
lsample = (Sint16)((src[1]<<8)|src[0]);
rsample = (Sint16)((src[3]<<8)|src[2]);
dst[0] = (lsample&0xFF);
lsample >>= 8;
dst[1] = (lsample&0xFF);
dst[2] = (rsample&0xFF);
rsample >>= 8;
dst[3] = (rsample&0xFF);
src += 12;
dst += 4;
}
}
}
break;
}
cvt->len_cvt /= 3;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Discard top 2 channels of 6 */
void SDL_ConvertStrip_2(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Sint32 lsample, rsample;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting 6 down to quad\n");
#endif
switch (format&0x8018) {
case AUDIO_U8: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
for ( i=cvt->len_cvt/4; i; --i ) {
Feb 24, 2006
Feb 24, 2006
304
305
dst[0] = src[0];
dst[1] = src[1];
Aug 21, 2004
Aug 21, 2004
306
307
308
309
310
311
312
313
314
315
316
317
src += 4;
dst += 2;
}
}
break;
case AUDIO_S8: {
Sint8 *src, *dst;
src = (Sint8 *)cvt->buf;
dst = (Sint8 *)cvt->buf;
for ( i=cvt->len_cvt/4; i; --i ) {
Feb 24, 2006
Feb 24, 2006
318
319
dst[0] = src[0];
dst[1] = src[1];
Aug 21, 2004
Aug 21, 2004
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
src += 4;
dst += 2;
}
}
break;
case AUDIO_U16: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/8; i; --i ) {
lsample = (Uint16)((src[0]<<8)|src[1]);
rsample = (Uint16)((src[2]<<8)|src[3]);
dst[1] = (lsample&0xFF);
lsample >>= 8;
dst[0] = (lsample&0xFF);
dst[3] = (rsample&0xFF);
rsample >>= 8;
dst[2] = (rsample&0xFF);
src += 8;
dst += 4;
}
} else {
for ( i=cvt->len_cvt/8; i; --i ) {
lsample = (Uint16)((src[1]<<8)|src[0]);
rsample = (Uint16)((src[3]<<8)|src[2]);
dst[0] = (lsample&0xFF);
lsample >>= 8;
dst[1] = (lsample&0xFF);
dst[2] = (rsample&0xFF);
rsample >>= 8;
dst[3] = (rsample&0xFF);
src += 8;
dst += 4;
}
}
}
break;
case AUDIO_S16: {
Uint8 *src, *dst;
src = cvt->buf;
dst = cvt->buf;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/8; i; --i ) {
lsample = (Sint16)((src[0]<<8)|src[1]);
rsample = (Sint16)((src[2]<<8)|src[3]);
dst[1] = (lsample&0xFF);
lsample >>= 8;
dst[0] = (lsample&0xFF);
dst[3] = (rsample&0xFF);
rsample >>= 8;
dst[2] = (rsample&0xFF);
src += 8;
dst += 4;
}
} else {
for ( i=cvt->len_cvt/8; i; --i ) {
lsample = (Sint16)((src[1]<<8)|src[0]);
rsample = (Sint16)((src[3]<<8)|src[2]);
dst[0] = (lsample&0xFF);
lsample >>= 8;
dst[1] = (lsample&0xFF);
dst[2] = (rsample&0xFF);
rsample >>= 8;
dst[3] = (rsample&0xFF);
src += 8;
dst += 4;
}
}
}
break;
}
cvt->len_cvt /= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
Apr 26, 2001
Apr 26, 2001
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
/* Duplicate a mono channel to both stereo channels */
void SDL_ConvertStereo(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting to stereo\n");
#endif
if ( (format & 0xFF) == 16 ) {
Uint16 *src, *dst;
src = (Uint16 *)(cvt->buf+cvt->len_cvt);
dst = (Uint16 *)(cvt->buf+cvt->len_cvt*2);
for ( i=cvt->len_cvt/2; i; --i ) {
dst -= 2;
src -= 1;
dst[0] = src[0];
dst[1] = src[0];
}
} else {
Uint8 *src, *dst;
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
for ( i=cvt->len_cvt; i; --i ) {
dst -= 2;
src -= 1;
dst[0] = src[0];
dst[1] = src[0];
}
}
cvt->len_cvt *= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
Aug 21, 2004
Aug 21, 2004
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
/* Duplicate a stereo channel to a pseudo-5.1 stream */
void SDL_ConvertSurround(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting stereo to surround\n");
#endif
switch (format&0x8018) {
case AUDIO_U8: {
Uint8 *src, *dst, lf, rf, ce;
src = (Uint8 *)(cvt->buf+cvt->len_cvt);
dst = (Uint8 *)(cvt->buf+cvt->len_cvt*3);
for ( i=cvt->len_cvt; i; --i ) {
dst -= 6;
src -= 2;
lf = src[0];
rf = src[1];
ce = (lf/2) + (rf/2);
dst[0] = lf;
dst[1] = rf;
dst[2] = lf - ce;
dst[3] = rf - ce;
dst[4] = ce;
dst[5] = ce;
}
}
break;
case AUDIO_S8: {
Sint8 *src, *dst, lf, rf, ce;
Dec 13, 2004
Dec 13, 2004
474
475
src = (Sint8 *)cvt->buf+cvt->len_cvt;
dst = (Sint8 *)cvt->buf+cvt->len_cvt*3;
Aug 21, 2004
Aug 21, 2004
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
for ( i=cvt->len_cvt; i; --i ) {
dst -= 6;
src -= 2;
lf = src[0];
rf = src[1];
ce = (lf/2) + (rf/2);
dst[0] = lf;
dst[1] = rf;
dst[2] = lf - ce;
dst[3] = rf - ce;
dst[4] = ce;
dst[5] = ce;
}
}
break;
case AUDIO_U16: {
Uint8 *src, *dst;
Uint16 lf, rf, ce, lr, rr;
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*3;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 12;
src -= 4;
lf = (Uint16)((src[0]<<8)|src[1]);
rf = (Uint16)((src[2]<<8)|src[3]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[1] = (lf&0xFF);
dst[0] = ((lf>>8)&0xFF);
dst[3] = (rf&0xFF);
dst[2] = ((rf>>8)&0xFF);
dst[1+4] = (lr&0xFF);
dst[0+4] = ((lr>>8)&0xFF);
dst[3+4] = (rr&0xFF);
dst[2+4] = ((rr>>8)&0xFF);
dst[1+8] = (ce&0xFF);
dst[0+8] = ((ce>>8)&0xFF);
dst[3+8] = (ce&0xFF);
dst[2+8] = ((ce>>8)&0xFF);
}
} else {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 12;
src -= 4;
lf = (Uint16)((src[1]<<8)|src[0]);
rf = (Uint16)((src[3]<<8)|src[2]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[0] = (lf&0xFF);
dst[1] = ((lf>>8)&0xFF);
dst[2] = (rf&0xFF);
dst[3] = ((rf>>8)&0xFF);
dst[0+4] = (lr&0xFF);
dst[1+4] = ((lr>>8)&0xFF);
dst[2+4] = (rr&0xFF);
dst[3+4] = ((rr>>8)&0xFF);
dst[0+8] = (ce&0xFF);
dst[1+8] = ((ce>>8)&0xFF);
dst[2+8] = (ce&0xFF);
dst[3+8] = ((ce>>8)&0xFF);
}
}
}
break;
case AUDIO_S16: {
Uint8 *src, *dst;
Sint16 lf, rf, ce, lr, rr;
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*3;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 12;
src -= 4;
lf = (Sint16)((src[0]<<8)|src[1]);
rf = (Sint16)((src[2]<<8)|src[3]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[1] = (lf&0xFF);
dst[0] = ((lf>>8)&0xFF);
dst[3] = (rf&0xFF);
dst[2] = ((rf>>8)&0xFF);
dst[1+4] = (lr&0xFF);
dst[0+4] = ((lr>>8)&0xFF);
dst[3+4] = (rr&0xFF);
dst[2+4] = ((rr>>8)&0xFF);
dst[1+8] = (ce&0xFF);
dst[0+8] = ((ce>>8)&0xFF);
dst[3+8] = (ce&0xFF);
dst[2+8] = ((ce>>8)&0xFF);
}
} else {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 12;
src -= 4;
lf = (Sint16)((src[1]<<8)|src[0]);
rf = (Sint16)((src[3]<<8)|src[2]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[0] = (lf&0xFF);
dst[1] = ((lf>>8)&0xFF);
dst[2] = (rf&0xFF);
dst[3] = ((rf>>8)&0xFF);
dst[0+4] = (lr&0xFF);
dst[1+4] = ((lr>>8)&0xFF);
dst[2+4] = (rr&0xFF);
dst[3+4] = ((rr>>8)&0xFF);
dst[0+8] = (ce&0xFF);
dst[1+8] = ((ce>>8)&0xFF);
dst[2+8] = (ce&0xFF);
dst[3+8] = ((ce>>8)&0xFF);
}
}
}
break;
}
cvt->len_cvt *= 3;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Duplicate a stereo channel to a pseudo-4.0 stream */
void SDL_ConvertSurround_4(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting stereo to quad\n");
#endif
switch (format&0x8018) {
case AUDIO_U8: {
Uint8 *src, *dst, lf, rf, ce;
src = (Uint8 *)(cvt->buf+cvt->len_cvt);
dst = (Uint8 *)(cvt->buf+cvt->len_cvt*2);
for ( i=cvt->len_cvt; i; --i ) {
dst -= 4;
src -= 2;
lf = src[0];
rf = src[1];
ce = (lf/2) + (rf/2);
dst[0] = lf;
dst[1] = rf;
dst[2] = lf - ce;
dst[3] = rf - ce;
}
}
break;
case AUDIO_S8: {
Sint8 *src, *dst, lf, rf, ce;
Dec 13, 2004
Dec 13, 2004
649
650
src = (Sint8 *)cvt->buf+cvt->len_cvt;
dst = (Sint8 *)cvt->buf+cvt->len_cvt*2;
Aug 21, 2004
Aug 21, 2004
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
for ( i=cvt->len_cvt; i; --i ) {
dst -= 4;
src -= 2;
lf = src[0];
rf = src[1];
ce = (lf/2) + (rf/2);
dst[0] = lf;
dst[1] = rf;
dst[2] = lf - ce;
dst[3] = rf - ce;
}
}
break;
case AUDIO_U16: {
Uint8 *src, *dst;
Uint16 lf, rf, ce, lr, rr;
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 8;
src -= 4;
lf = (Uint16)((src[0]<<8)|src[1]);
rf = (Uint16)((src[2]<<8)|src[3]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[1] = (lf&0xFF);
dst[0] = ((lf>>8)&0xFF);
dst[3] = (rf&0xFF);
dst[2] = ((rf>>8)&0xFF);
dst[1+4] = (lr&0xFF);
dst[0+4] = ((lr>>8)&0xFF);
dst[3+4] = (rr&0xFF);
dst[2+4] = ((rr>>8)&0xFF);
}
} else {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 8;
src -= 4;
lf = (Uint16)((src[1]<<8)|src[0]);
rf = (Uint16)((src[3]<<8)|src[2]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[0] = (lf&0xFF);
dst[1] = ((lf>>8)&0xFF);
dst[2] = (rf&0xFF);
dst[3] = ((rf>>8)&0xFF);
dst[0+4] = (lr&0xFF);
dst[1+4] = ((lr>>8)&0xFF);
dst[2+4] = (rr&0xFF);
dst[3+4] = ((rr>>8)&0xFF);
}
}
}
break;
case AUDIO_S16: {
Uint8 *src, *dst;
Sint16 lf, rf, ce, lr, rr;
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
if ( (format & 0x1000) == 0x1000 ) {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 8;
src -= 4;
lf = (Sint16)((src[0]<<8)|src[1]);
rf = (Sint16)((src[2]<<8)|src[3]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[1] = (lf&0xFF);
dst[0] = ((lf>>8)&0xFF);
dst[3] = (rf&0xFF);
dst[2] = ((rf>>8)&0xFF);
dst[1+4] = (lr&0xFF);
dst[0+4] = ((lr>>8)&0xFF);
dst[3+4] = (rr&0xFF);
dst[2+4] = ((rr>>8)&0xFF);
}
} else {
for ( i=cvt->len_cvt/4; i; --i ) {
dst -= 8;
src -= 4;
lf = (Sint16)((src[1]<<8)|src[0]);
rf = (Sint16)((src[3]<<8)|src[2]);
ce = (lf/2) + (rf/2);
rr = lf - ce;
lr = rf - ce;
dst[0] = (lf&0xFF);
dst[1] = ((lf>>8)&0xFF);
dst[2] = (rf&0xFF);
dst[3] = ((rf>>8)&0xFF);
dst[0+4] = (lr&0xFF);
dst[1+4] = ((lr>>8)&0xFF);
dst[2+4] = (rr&0xFF);
dst[3+4] = ((rr>>8)&0xFF);
}
}
}
break;
}
cvt->len_cvt *= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
Apr 26, 2001
Apr 26, 2001
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
/* Convert 8-bit to 16-bit - LSB */
void SDL_Convert16LSB(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *src, *dst;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting to 16-bit LSB\n");
#endif
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
for ( i=cvt->len_cvt; i; --i ) {
src -= 1;
dst -= 2;
dst[1] = *src;
dst[0] = 0;
}
format = ((format & ~0x0008) | AUDIO_U16LSB);
cvt->len_cvt *= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Convert 8-bit to 16-bit - MSB */
void SDL_Convert16MSB(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *src, *dst;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting to 16-bit MSB\n");
#endif
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
for ( i=cvt->len_cvt; i; --i ) {
src -= 1;
dst -= 2;
dst[0] = *src;
dst[1] = 0;
}
format = ((format & ~0x0008) | AUDIO_U16MSB);
cvt->len_cvt *= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Convert 16-bit to 8-bit */
void SDL_Convert8(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *src, *dst;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting to 8-bit\n");
#endif
src = cvt->buf;
dst = cvt->buf;
if ( (format & 0x1000) != 0x1000 ) { /* Little endian */
++src;
}
for ( i=cvt->len_cvt/2; i; --i ) {
*dst = *src;
src += 2;
dst += 1;
}
format = ((format & ~0x9010) | AUDIO_U8);
cvt->len_cvt /= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Toggle signed/unsigned */
void SDL_ConvertSign(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *data;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting audio signedness\n");
#endif
data = cvt->buf;
if ( (format & 0xFF) == 16 ) {
if ( (format & 0x1000) != 0x1000 ) { /* Little endian */
++data;
}
for ( i=cvt->len_cvt/2; i; --i ) {
*data ^= 0x80;
data += 2;
}
} else {
for ( i=cvt->len_cvt; i; --i ) {
*data++ ^= 0x80;
}
}
format = (format ^ 0x8000);
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Toggle endianness */
void SDL_ConvertEndian(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *data, tmp;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting audio endianness\n");
#endif
data = cvt->buf;
for ( i=cvt->len_cvt/2; i; --i ) {
tmp = data[0];
data[0] = data[1];
data[1] = tmp;
data += 2;
}
format = (format ^ 0x1000);
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Convert rate up by multiple of 2 */
void SDL_RateMUL2(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *src, *dst;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting audio rate * 2\n");
#endif
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
switch (format & 0xFF) {
case 8:
for ( i=cvt->len_cvt; i; --i ) {
src -= 1;
dst -= 2;
dst[0] = src[0];
dst[1] = src[0];
}
break;
case 16:
for ( i=cvt->len_cvt/2; i; --i ) {
src -= 2;
dst -= 4;
dst[0] = src[0];
dst[1] = src[1];
dst[2] = src[0];
dst[3] = src[1];
}
break;
}
cvt->len_cvt *= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
Aug 21, 2004
Aug 21, 2004
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Convert rate up by multiple of 2, for stereo */
void SDL_RateMUL2_c2(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *src, *dst;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting audio rate * 2\n");
#endif
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
switch (format & 0xFF) {
case 8:
for ( i=cvt->len_cvt/2; i; --i ) {
src -= 2;
dst -= 4;
dst[0] = src[0];
dst[1] = src[1];
dst[2] = src[0];
dst[3] = src[1];
}
break;
case 16:
for ( i=cvt->len_cvt/4; i; --i ) {
src -= 4;
dst -= 8;
dst[0] = src[0];
dst[1] = src[1];
dst[2] = src[2];
dst[3] = src[3];
dst[4] = src[0];
dst[5] = src[1];
dst[6] = src[2];
dst[7] = src[3];
}
break;
}
cvt->len_cvt *= 2;
if ( cvt->filters[++cvt->filter_index] ) {
cvt->filters[cvt->filter_index](cvt, format);
}
}
/* Convert rate up by multiple of 2, for quad */
void SDL_RateMUL2_c4(SDL_AudioCVT *cvt, Uint16 format)
{
int i;
Uint8 *src, *dst;
#ifdef DEBUG_CONVERT
fprintf(stderr, "Converting audio rate * 2\n");
#endif
src = cvt->buf+cvt->len_cvt;
dst = cvt->buf+cvt->len_cvt*2;
switch (format & 0xFF) {
case 8:
for ( i=cvt->len_cvt/4; i; --i ) {
src -= 4;
dst -= 8;
dst[0] = src[0];
dst[1] = src[1];
dst[2] = src[2];
dst[3] = src[3];
dst[4] = src[0];
dst[5] = src[1];
dst[6] = src[2];
dst[7] = src[3];
}
break;