util.c
17 KB
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
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
649
650
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
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
/*
Audio File Library
Copyright (C) 1998-2000, Michael Pruett <michael@68k.org>
Copyright (C) 2000, Silicon Graphics, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307 USA.
*/
/*
util.c
This file contains general utility routines for the Audio File
Library.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <assert.h>
#include "audiofile.h"
#include "aupvlist.h"
#include "afinternal.h"
#include "util.h"
#include "units.h"
#include "compression.h"
#include "modules.h"
#include "byteorder.h"
#include "aupvinternal.h"
#include "print.h"
extern _PCMInfo _af_default_signed_integer_pcm_mappings[];
extern _PCMInfo _af_default_unsigned_integer_pcm_mappings[];
extern _PCMInfo _af_default_float_pcm_mapping;
extern _PCMInfo _af_default_double_pcm_mapping;
extern _CompressionUnit _af_compression[];
/*
_af_filesetup_ok and _af_filehandle_ok are sanity check routines
which are called at the beginning of every external subroutine.
*/
bool _af_filesetup_ok (AFfilesetup setup)
{
if (setup == AF_NULL_FILESETUP)
{
_af_error(AF_BAD_FILESETUP, "null file setup");
return AF_FALSE;
}
if (setup->valid != _AF_VALID_FILESETUP)
{
_af_error(AF_BAD_FILESETUP, "invalid file setup");
return AF_FALSE;
}
return AF_TRUE;
}
bool _af_filehandle_can_read (AFfilehandle file)
{
if (file->access != _AF_READ_ACCESS)
{
_af_error(AF_BAD_NOREADACC, "file not opened for read access");
return AF_FALSE;
}
return AF_TRUE;
}
bool _af_filehandle_can_write (AFfilehandle file)
{
if (file->access != _AF_WRITE_ACCESS)
{
_af_error(AF_BAD_NOWRITEACC, "file not opened for write access");
return AF_FALSE;
}
return AF_TRUE;
}
bool _af_filehandle_ok (AFfilehandle file)
{
if (file == AF_NULL_FILEHANDLE)
{
_af_error(AF_BAD_FILEHANDLE, "null file handle");
return AF_FALSE;
}
if (file->valid != _AF_VALID_FILEHANDLE)
{
_af_error(AF_BAD_FILEHANDLE, "invalid file handle");
return AF_FALSE;
}
return AF_TRUE;
}
void _af_printid (u_int32_t id)
{
printf("%c%c%c%c",
(id >> 24) & 0xff,
(id >> 16) & 0xff,
(id >> 8) & 0xff,
id & 0xff);
}
void _af_print_pvlist (AUpvlist list)
{
int i;
assert(list);
printf("list.valid: %d\n", list->valid);
printf("list.count: %d\n", list->count);
for (i=0; i<list->count; i++)
{
printf("item %d valid %d, should be %d\n",
i, list->items[i].valid, _AU_VALID_PVITEM);
switch (list->items[i].type)
{
case AU_PVTYPE_LONG:
printf("item #%d, parameter %d, long: %ld\n",
i, list->items[i].parameter,
list->items[i].value.l);
break;
case AU_PVTYPE_DOUBLE:
printf("item #%d, parameter %d, double: %f\n",
i, list->items[i].parameter,
list->items[i].value.d);
break;
case AU_PVTYPE_PTR:
printf("item #%d, parameter %d, pointer: %p\n",
i, list->items[i].parameter,
list->items[i].value.v);
break;
default:
printf("item #%d, invalid type %d\n", i,
list->items[i].type);
assert(0);
break;
}
}
}
void _af_print_audioformat (_AudioFormat *fmt)
{
/* sampleRate, channelCount */
printf("{ %7.2f Hz %d ch ", fmt->sampleRate, fmt->channelCount);
/* sampleFormat, sampleWidth */
switch (fmt->sampleFormat)
{
case AF_SAMPFMT_TWOSCOMP:
printf("%db 2 ", fmt->sampleWidth);
break;
case AF_SAMPFMT_UNSIGNED:
printf("%db u ", fmt->sampleWidth);
break;
case AF_SAMPFMT_FLOAT:
printf("flt ");
break;
case AF_SAMPFMT_DOUBLE:
printf("dbl ");
break;
default:
printf("%dsampfmt? ", fmt->sampleFormat);
}
/* pcm */
printf("(%.30g+-%.30g [%.30g,%.30g]) ",
fmt->pcm.intercept, fmt->pcm.slope,
fmt->pcm.minClip, fmt->pcm.maxClip);
/* byteOrder */
switch (fmt->byteOrder)
{
case AF_BYTEORDER_BIGENDIAN:
printf("big ");
break;
case AF_BYTEORDER_LITTLEENDIAN:
printf("little ");
break;
default:
printf("%dbyteorder? ", fmt->byteOrder);
break;
}
/* compression */
{
int idx = _af_compression_index_from_id(fmt->compressionType);
if (idx < 0)
{
printf("%dcompression?", fmt->compressionType);
}
else if (fmt->compressionType == AF_COMPRESSION_NONE)
printf("pcm");
else
printf("%s", _af_compression[idx].label);
}
printf(" }");
}
void _af_print_tracks (AFfilehandle filehandle)
{
int i;
for (i=0; i<filehandle->trackCount; i++)
{
_Track *track = &filehandle->tracks[i];
printf("track %d\n", i);
printf(" id %d\n", track->id);
printf(" sample format\n");
_af_print_audioformat(&track->f);
printf(" virtual format\n");
_af_print_audioformat(&track->v);
printf(" total file frames: %" AF_FRAMECOUNT_PRINT_FMT "\n",
track->totalfframes);
printf(" total virtual frames: %" AF_FRAMECOUNT_PRINT_FMT "\n",
track->totalvframes);
printf(" next file frame: %" AF_FRAMECOUNT_PRINT_FMT "\n",
track->nextfframe);
printf(" next virtual frame: %" AF_FRAMECOUNT_PRINT_FMT "\n",
track->nextvframe);
printf(" frames to ignore: %" AF_FRAMECOUNT_PRINT_FMT "\n",
track->frames2ignore);
printf(" data_size: %" AF_FILEOFFSET_PRINT_FMT "\n",
track->data_size);
printf(" fpos_first_frame: %" AF_FILEOFFSET_PRINT_FMT "\n",
track->fpos_first_frame);
printf(" fpos_next_frame: %" AF_FILEOFFSET_PRINT_FMT "\n",
track->fpos_next_frame);
printf(" fpos_after_data: %" AF_FILEOFFSET_PRINT_FMT "\n",
track->fpos_after_data);
printf(" channel matrix:");
_af_print_channel_matrix(track->channelMatrix,
track->f.channelCount, track->v.channelCount);
printf("\n");
printf(" marker count: %d\n", track->markerCount);
}
}
void _af_print_filehandle (AFfilehandle filehandle)
{
printf("file handle: 0x%p\n", filehandle);
if (filehandle->valid == _AF_VALID_FILEHANDLE)
printf("valid\n");
else
printf("invalid!\n");
printf(" access: ");
if (filehandle->access == _AF_READ_ACCESS)
putchar('r');
else
putchar('w');
printf(" fileFormat: %d\n", filehandle->fileFormat);
printf(" instrument count: %d\n", filehandle->instrumentCount);
printf(" instruments: 0x%p\n", filehandle->instruments);
printf(" miscellaneous count: %d\n", filehandle->miscellaneousCount);
printf(" miscellaneous: 0x%p\n", filehandle->miscellaneous);
printf(" trackCount: %d\n", filehandle->trackCount);
printf(" tracks: 0x%p\n", filehandle->tracks);
_af_print_tracks(filehandle);
}
void *_af_malloc (size_t size)
{
void *p;
if (size <= 0)
{
_af_error(AF_BAD_MALLOC, "bad memory allocation size request %d", size);
return NULL;
}
p = malloc(size);
#ifdef AF_DEBUG
if (p)
memset(p, 0xff, size);
#endif
if (p == NULL)
{
_af_error(AF_BAD_MALLOC, "allocation of %d bytes failed", size);
return NULL;
}
return p;
}
char *_af_strdup (char *s)
{
char *p = malloc(strlen(s) + 1);
if (p)
strcpy(p, s);
return p;
}
void *_af_realloc (void *p, size_t size)
{
if (size <= 0)
{
_af_error(AF_BAD_MALLOC, "bad memory allocation size request %d", size);
return NULL;
}
p = realloc(p, size);
if (p == NULL)
{
_af_error(AF_BAD_MALLOC, "allocation of %d bytes failed", size);
return NULL;
}
return p;
}
void *_af_calloc (size_t nmemb, size_t size)
{
void *p;
if (nmemb <= 0 || size <= 0)
{
_af_error(AF_BAD_MALLOC, "bad memory allocation size request "
"%d elements of %d bytes each", nmemb, size);
return NULL;
}
p = calloc(nmemb, size);
if (p == NULL)
{
_af_error(AF_BAD_MALLOC, "allocation of %d bytes failed",
nmemb*size);
return NULL;
}
return p;
}
AUpvlist _af_pv_long (long val)
{
AUpvlist ret = AUpvnew(1);
AUpvsetparam(ret, 0, 0);
AUpvsetvaltype(ret, 0, AU_PVTYPE_LONG);
AUpvsetval(ret, 0, &val);
return ret;
}
AUpvlist _af_pv_double (double val)
{
AUpvlist ret = AUpvnew(1);
AUpvsetparam(ret, 0, 0);
AUpvsetvaltype(ret, 0, AU_PVTYPE_DOUBLE);
AUpvsetval(ret, 0, &val);
return ret;
}
AUpvlist _af_pv_pointer (void *val)
{
AUpvlist ret = AUpvnew(1);
AUpvsetparam(ret, 0, 0);
AUpvsetvaltype(ret, 0, AU_PVTYPE_PTR);
AUpvsetval(ret, 0, &val);
return ret;
}
bool _af_pv_getlong (AUpvlist pvlist, int param, long *l)
{
int i;
for (i=0; i<AUpvgetmaxitems(pvlist); i++)
{
int p, t;
AUpvgetparam(pvlist, i, &p);
if (p != param)
continue;
AUpvgetvaltype(pvlist, i, &t);
/* Ensure that this parameter is of type AU_PVTYPE_LONG. */
if (t != AU_PVTYPE_LONG)
return AF_FALSE;
AUpvgetval(pvlist, i, l);
return AF_TRUE;
}
return AF_FALSE;
}
bool _af_pv_getdouble (AUpvlist pvlist, int param, double *d)
{
int i;
for (i=0; i<AUpvgetmaxitems(pvlist); i++)
{
int p, t;
AUpvgetparam(pvlist, i, &p);
if (p != param)
continue;
AUpvgetvaltype(pvlist, i, &t);
/* Ensure that this parameter is of type AU_PVTYPE_DOUBLE. */
if (t != AU_PVTYPE_DOUBLE)
return AF_FALSE;
AUpvgetval(pvlist, i, d);
return AF_TRUE;
}
return AF_FALSE;
}
bool _af_pv_getptr (AUpvlist pvlist, int param, void **v)
{
int i;
for (i=0; i<AUpvgetmaxitems(pvlist); i++)
{
int p, t;
AUpvgetparam(pvlist, i, &p);
if (p != param)
continue;
AUpvgetvaltype(pvlist, i, &t);
/* Ensure that this parameter is of type AU_PVTYPE_PTR. */
if (t != AU_PVTYPE_PTR)
return AF_FALSE;
AUpvgetval(pvlist, i, v);
return AF_TRUE;
}
return AF_FALSE;
}
_TrackSetup *_af_filesetup_get_tracksetup (AFfilesetup setup, int trackid)
{
int i;
for (i=0; i<setup->trackCount; i++)
{
if (setup->tracks[i].id == trackid)
return &setup->tracks[i];
}
_af_error(AF_BAD_TRACKID, "bad track id %d", trackid);
return NULL;
}
_Track *_af_filehandle_get_track (AFfilehandle file, int trackid)
{
int i;
for (i=0; i<file->trackCount; i++)
{
if (file->tracks[i].id == trackid)
return &file->tracks[i];
}
_af_error(AF_BAD_TRACKID, "bad track id %d", trackid);
return NULL;
}
int _af_format_sample_size_uncompressed (_AudioFormat *format, bool stretch3to4)
{
int size = 0;
switch (format->sampleFormat)
{
case AF_SAMPFMT_FLOAT:
size = sizeof (float);
break;
case AF_SAMPFMT_DOUBLE:
size = sizeof (double);
break;
default:
size = (int) (format->sampleWidth + 7) / 8;
if (format->compressionType == AF_COMPRESSION_NONE &&
size == 3 && stretch3to4)
size = 4;
break;
}
return size;
}
float _af_format_sample_size (_AudioFormat *fmt, bool stretch3to4)
{
int compressionIndex;
float squishFactor;
compressionIndex = _af_compression_index_from_id(fmt->compressionType);
squishFactor = _af_compression[compressionIndex].squishFactor;
return _af_format_sample_size_uncompressed(fmt, stretch3to4) /
squishFactor;
}
int _af_format_frame_size_uncompressed (_AudioFormat *fmt, bool stretch3to4)
{
return _af_format_sample_size_uncompressed(fmt, stretch3to4) *
fmt->channelCount;
}
float _af_format_frame_size (_AudioFormat *fmt, bool stretch3to4)
{
int compressionIndex;
float squishFactor;
compressionIndex = _af_compression_index_from_id(fmt->compressionType);
squishFactor = _af_compression[compressionIndex].squishFactor;
return _af_format_frame_size_uncompressed(fmt, stretch3to4) /
squishFactor;
}
/*
Set the sampleFormat and sampleWidth fields in f, and set the
PCM info to the appropriate default values for the given sample
format and sample width.
*/
status _af_set_sample_format (_AudioFormat *f, int sampleFormat, int sampleWidth)
{
switch (sampleFormat)
{
case AF_SAMPFMT_UNSIGNED:
case AF_SAMPFMT_TWOSCOMP:
if (sampleWidth < 1 || sampleWidth > 32)
{
_af_error(AF_BAD_SAMPFMT,
"illegal sample width %d for integer data",
sampleWidth);
return AF_FAIL;
}
else
{
int bytes;
f->sampleFormat = sampleFormat;
f->sampleWidth = sampleWidth;
bytes = _af_format_sample_size_uncompressed(f, AF_FALSE);
if (sampleFormat == AF_SAMPFMT_TWOSCOMP)
f->pcm = _af_default_signed_integer_pcm_mappings[bytes];
else
f->pcm = _af_default_unsigned_integer_pcm_mappings[bytes];
}
break;
case AF_SAMPFMT_FLOAT:
f->sampleFormat = sampleFormat;
f->sampleWidth = 32;
f->pcm = _af_default_float_pcm_mapping;
break;
case AF_SAMPFMT_DOUBLE:
f->sampleFormat = sampleFormat;
f->sampleWidth = 64; /*for convenience */
f->pcm = _af_default_double_pcm_mapping;
break;
default:
_af_error(AF_BAD_SAMPFMT, "unknown sample format %d",
sampleFormat);
return AF_FAIL;
}
return AF_SUCCEED;
}
/*
Verify the uniqueness of the nids ids given.
idname is the name of what the ids identify, as in "loop"
iderr is an error as in AF_BAD_LOOPID
*/
bool _af_unique_ids (int *ids, int nids, char *idname, int iderr)
{
int i;
for (i = 0; i < nids; i++)
{
int j;
for (j = 0; j < i; j++)
if (ids[i] == ids[j])
{
_af_error(iderr, "nonunique %s id %d",
idname, ids[i]);
return AF_FALSE;
}
}
return AF_TRUE;
}
void _af_print_channel_matrix (double *matrix, int fchans, int vchans)
{
int v, f;
if (!matrix)
{
printf("NULL");
return;
}
printf("{");
for (v=0; v < vchans; v++)
{
if (v) printf(" ");
printf("{");
for (f=0; f < fchans; f++)
{
if (f) printf(" ");
printf("%5.2f", *(matrix + v*fchans + f));
}
printf("}");
}
printf("}");
}
void _af_print_frame (AFframecount frameno, double *frame, int nchannels,
char *formatstring, int numberwidth,
double slope, double intercept, double minclip, double maxclip)
{
char linebuf[81];
int wavewidth = wavewidth = 78 - numberwidth*nchannels - 6;
int c;
memset(linebuf, ' ', 80);
linebuf[0] = '|';
linebuf[wavewidth-1] = '|';
linebuf[wavewidth] = 0;
printf("%05" AF_FRAMECOUNT_PRINT_FMT " ", frameno);
for (c=0; c < nchannels; c++)
{
double pcm = frame[c];
printf(formatstring, pcm);
}
for (c=0; c < nchannels; c++)
{
double pcm = frame[c], volts;
if (maxclip > minclip)
{
if (pcm < minclip) pcm = minclip;
if (pcm > maxclip) pcm = maxclip;
}
volts = (pcm - intercept) / slope;
linebuf[(int)((volts/2 + 0.5)*(wavewidth-3)) + 1] = '0' + c;
}
printf("%s\n", linebuf);
}
/*
dumpchunk
*/
void _af_print_chunk (_AFchunk *chnk)
{
_AudioFormat fmt = chnk->f;
AFframecount nframes = chnk->nframes;
AFframecount nsamps = nframes * fmt.channelCount;
AFframecount fr;
double *outbuf;
char formatstring[20];
int digits, numberwidth;
switch (fmt.compressionType)
{
case AF_COMPRESSION_NONE:
break;
case AF_COMPRESSION_G711_ULAW:
printf("WARNING dumping ulaw data as if it were 8-bit unsigned\n");
fmt.compressionType = AF_COMPRESSION_NONE;
fmt.sampleWidth = 8;
fmt.sampleFormat = AF_SAMPFMT_UNSIGNED;
break;
default:
printf("LAME-O chunk dumper cannot deal with '%s' compression\n",
_af_compression[_af_compression_index_from_id(fmt.compressionType)].name);
return;
}
if (fmt.sampleWidth > 8 && fmt.byteOrder != _AF_BYTEORDER_NATIVE)
{
printf("LAME-O chunk dumper cannot deal with non-native byte order\n");
return;
}
#define transfer(type) \
{ \
int s; \
for(s=0; s < nsamps; s++) \
outbuf[s] = (double)(((type *)chnk->buf)[s]); \
}
/* Make the buffer large enough to hold doubles. */
outbuf = malloc(sizeof(double) * nsamps);
switch (fmt.sampleFormat)
{
case AF_SAMPFMT_DOUBLE:
case AF_SAMPFMT_FLOAT:
{
if (fmt.sampleFormat == AF_SAMPFMT_DOUBLE)
{
transfer(double);
}
else
{
transfer(float);
}
digits = (int) log10(fmt.pcm.intercept + fabs(fmt.pcm.slope)) + 1;
/* Account for the sign character. */
digits += 1;
if (digits > 4)
{
sprintf(formatstring, "%%%d.0f ", digits);
numberwidth = digits + 1;
}
else
{
sprintf(formatstring, "%%%d.2f ", digits+3);
numberwidth = digits + 3 + 1;
}
}
break;
case AF_SAMPFMT_TWOSCOMP:
case AF_SAMPFMT_UNSIGNED:
{
bool issigned = (fmt.sampleFormat==AF_SAMPFMT_TWOSCOMP);
/* # of bytes taken by the value */
int realbytes = _af_format_sample_size_uncompressed(&fmt, AF_TRUE);
switch (realbytes)
{
case 1:
if (issigned) { transfer(schar1); }
else { transfer(uchar1); }
break;
case 2:
if (issigned) { transfer(schar2); }
else { transfer(uchar2); }
break;
case 4:
if (issigned) { transfer(schar4); }
else { transfer(uchar4); }
break;
default:
printf("LAME-O chunk dumper cannot deal with %d bits\n",
realbytes*8);
free(outbuf);
return;
}
digits = (int) log10(fmt.pcm.intercept + fabs(fmt.pcm.slope)) + 1;
if (issigned)
digits++;
sprintf(formatstring, "%%%d.0f ", digits);
numberwidth = digits + 1;
}
break;
default:
assert(0);
return;
}
for (fr=0; fr < nframes; fr++)
_af_print_frame(fr, &outbuf[fr*fmt.channelCount],
fmt.channelCount, formatstring, numberwidth,
fmt.pcm.slope, fmt.pcm.intercept,
fmt.pcm.minClip, fmt.pcm.maxClip);
free(outbuf);
}