Codebase list squeezelite / debian/1.9.9-1395+git20220104.874e4f9-1 tools / alsacap.c
debian/1.9.9-1395+git20220104.874e4f9-1

Tree @debian/1.9.9-1395+git20220104.874e4f9-1 (Download .tar.gz)

alsacap.c @debian/1.9.9-1395+git20220104.874e4f9-1raw · history · blame

  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
/*
 * ALSA parameter test program
 * 
 * Copyright (c) 2007 Volker Schatz (alsacap at the domain volkerschatz.com)
 * 
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies. 
 * 
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 *
 * This program was originally written by Volker Schatz.  Shawn Wilson
 * bundled it into an autotools package and cut and pasted some code 
 * from the alsa speaker-test command to display min/max buffer and 
 * period sizes.
 * 
 */


/*============================================================================
            Includes
============================================================================*/

#include <stdlib.h>
#include <stdio.h>
#include <alsa/asoundlib.h>
#include <errno.h>
#include <ctype.h>
#include <string.h>


/*============================================================================
         Constant and type definitions
============================================================================*/

#define RATE_KHZ_LIMIT   200

#define HWP_END      0
#define HWP_RATE   1
#define HWP_NCH      2
#define HWP_FORMAT   3
#define SIZE_HWP   7

typedef struct {
  int recdevices, verbose, card, dev;
  char *device;
  int hwparams[SIZE_HWP];
}
aiopts;


/*============================================================================
         Global variables
============================================================================*/

static snd_ctl_t *handle= NULL;
static snd_pcm_t *pcm= NULL;
static snd_ctl_card_info_t *info;
static snd_pcm_info_t *pcminfo;
static snd_pcm_hw_params_t *pars;
static snd_pcm_format_mask_t *fmask;


/*============================================================================
         Prototypes
============================================================================*/

void usagemsg(int code);
void errnumarg(char optchar);
void errarg(char optchar);
void errtoomany();

void scancards(snd_pcm_stream_t stream, int thecard, int thedev);
int sc_errcheck(int retval, const char *doingwhat, int cardnr, int devnr);

void testconfig(snd_pcm_stream_t stream, const char *device, const int *hwpars);
void tc_errcheck(int retval, const char *doingwhat);

const char *alsaerrstr(const int errcode);
const char *dirstr(int dir);

int parse_alsaformat(const char *fmtstr);
const char *alsafmtstr(int fmtnum);

void printfmtmask(const snd_pcm_format_mask_t *fmask);


/*============================================================================
            Main program
============================================================================*/

int main(int argc, char **argv)
{
  aiopts options= { 0, 1, -1, -1, NULL };
  snd_pcm_stream_t stream;
  char *argpar;
  int argind, hwpind;

  snd_ctl_card_info_alloca(&info);
  snd_pcm_info_alloca(&pcminfo);
  snd_pcm_hw_params_alloca(&pars);
  snd_pcm_format_mask_alloca(&fmask);

  hwpind= 0;
  for( argind= 1; argind< argc; ++argind )
  {
    if( argv[argind][0]!='-' ) {
      fprintf(stderr, "Unrecognised command-line argument `%s'.\n", argv[argind]);
      usagemsg(1);
    }
    if( argv[argind][2] )   argpar= argv[argind]+2;
    else {
      if( argind+1 >= argc ) argpar= NULL;
      else argpar= argv[argind+1];
    }
    if( argv[argind][1]=='h' || !strcmp(argv[argind]+1, "-help") )
      usagemsg(0);
    else if( argv[argind][1]=='R' ) {
      options.recdevices= 1;
      argpar= NULL;   // set to NULL if unused to keep track of next arg index
    }
    else if( argv[argind][1]=='C' ) {
      if( !argpar || !isdigit(*argpar) ) errnumarg('C');
      options.card= strtol(argpar, NULL, 0);
    }
    else if( argv[argind][1]=='D' ) {
      if( !argpar || !isdigit(*argpar) ) errnumarg('D');
      options.dev= strtol(argpar, NULL, 0);
    }
    else if( argv[argind][1]=='d' ) {
      if( !argpar )   errarg('d');
      options.device= argpar;
    }
    else if( argv[argind][1]=='r' ) {
      if( !argpar || !isdigit(*argpar) ) errnumarg('r');
      if( hwpind+3 > SIZE_HWP ) errtoomany();
      options.hwparams[hwpind++]= HWP_RATE;
      options.hwparams[hwpind]= strtol(argpar, NULL, 0);
      if( options.hwparams[hwpind] <= RATE_KHZ_LIMIT )
   options.hwparams[hwpind] *= 1000;         // sanity check: Hz or kHz ?
      ++hwpind;
    }
    else if( argv[argind][1]=='c' ) {
      if( !argpar || !isdigit(*argpar) ) errnumarg('c');
      if( hwpind+3 > SIZE_HWP ) errtoomany();
      options.hwparams[hwpind++]= HWP_NCH;
      options.hwparams[hwpind++]= strtol(argpar, NULL, 0);
    }
    else if( argv[argind][1]=='f' ) {
      if( !argpar ) errarg('f');
      if( hwpind+3 > SIZE_HWP ) errtoomany();
      options.hwparams[hwpind++]= HWP_FORMAT;
      options.hwparams[hwpind++]= parse_alsaformat(argpar);
    }
    else {
      fprintf(stderr, "Unrecognised command-line option `%s'.\n", argv[argind]);
      usagemsg(1);
    }
    if( argpar && !argv[argind][2] )
      ++argind;  // additional increment if separate parameter argument was used
  }
  options.hwparams[hwpind]= HWP_END;
  if( options.dev >= 0 && options.card < 0 ) {
    fprintf(stderr, "The card has to be specified with -C if a device number is given (-D).\n");
    exit(1);
  }
  if( options.device && (options.card>=0 || options.dev>=0) ) {
    fprintf(stderr, "Specifying a device name (-d) and a card and possibly device number (-C, -D) is mutually exclusive.\n");
    exit(1);
  }
  stream= options.recdevices? SND_PCM_STREAM_CAPTURE : SND_PCM_STREAM_PLAYBACK;

  if( !options.device )
    scancards(stream, options.card, options.dev);
  else
    testconfig(stream, options.device, options.hwparams);

}



/*============================================================================
   Usage message and command-line argument error functions
============================================================================*/

void usagemsg(int code)
{
  fprintf(stderr, "Usage: alsacap [-R] [-C <card #> [-D <device #>]]\n"
        "       alsacap [-R] -d <device name> [-r <rate>|-c <# of channels>|-f <sample format>]...\n"
      "ALSA capability lister.\n"
      "First form: Scans one or all soundcards known to ALSA for devices, \n"
      "subdevices and parameter ranges.  -R causes a scan for recording\n"
      "rather than playback devices.  The other options specify the sound\n"
      "card and possibly the device by number.\n"
      "Second form: Displays ranges of configuration parameters for the given\n"
      "ALSA device.  Unlike with the first form, a non-hardware device may be\n"
      "given.  Up to three optional command-line arguments fix the rate,\n"
      "number of channels and sample format in the order in which they are\n"
      "given.  The remaining parameter ranges are output.  If unique, the\n"
      "number of significant bits of the sample values is output.  (Some\n"
      "sound cards ignore some of the bits.)\n");
  exit(code);
}

void errnumarg(char optchar)
{
  fprintf(stderr, "The -%c option requires a numerical argument!  Aborting.\n", optchar);
  exit(1);
}

void errarg(char optchar)
{
  fprintf(stderr, "The -%c option requires an argument!  Aborting.\n", optchar);
  exit(1);
}

void errtoomany()
{
  fprintf(stderr, "Too many -r/-c/-f options given!  (Maximum is %d.)  Aborting.\n", (SIZE_HWP-1)/2);
  exit(1);
}


/*============================================================================
      Function for scanning all cards
============================================================================*/

#define HWCARDTEMPL   "hw:%d"
#define HWDEVTEMPL   "hw:%d,%d"
#define HWDEVLEN   32

void scancards(snd_pcm_stream_t stream, int thecard, int thedev)
{
  char hwdev[HWDEVLEN+1];
  unsigned min, max;
  int card, err, dev, subd, nsubd;
  snd_pcm_uframes_t     period_size_min;
  snd_pcm_uframes_t     period_size_max;
  snd_pcm_uframes_t     buffer_size_min;
  snd_pcm_uframes_t     buffer_size_max;


  printf("*** Scanning for %s devices", 
         stream == SND_PCM_STREAM_CAPTURE? "recording" : "playback");
  if( thecard >= 0 )
     printf(" on card %d", thecard);
  if( thedev >= 0 )
     printf(", device %d", thedev);
  printf(" ***\n");

  hwdev[HWDEVLEN]= 0;

  if( thecard >= 0 )
     card= thecard;
  else {
     card= -1;
     if( snd_card_next(&card) < 0 )
        return;
  }


  while( card >= 0 )
  {
    snprintf(hwdev, HWDEVLEN, HWCARDTEMPL, card);
    err= snd_ctl_open(&handle, hwdev, 0);
    if( sc_errcheck(err, "opening control interface", card, -1) ) goto nextcard;
    err= snd_ctl_card_info(handle, info);
    if( sc_errcheck(err, "obtaining card info", card, -1) ) {
      snd_ctl_close(handle);
      goto nextcard;
    }
    printf("\nCard %d, ID `%s', name `%s'\n", 
           card, snd_ctl_card_info_get_id(info),
           snd_ctl_card_info_get_name(info));
    if( thedev >= 0 )
       dev= thedev;
    else {
       dev= -1;
       if( snd_ctl_pcm_next_device(handle, &dev) < 0 ) {
          snd_ctl_close(handle);
          goto nextcard;
      }
    }
    while( dev >= 0 )
    {
      snd_pcm_info_set_device(pcminfo, dev);
      snd_pcm_info_set_subdevice(pcminfo, 0);
      snd_pcm_info_set_stream(pcminfo, stream);
      err= snd_ctl_pcm_info(handle, pcminfo);

      if( thedev<0 && err == -ENOENT ) 
         goto nextdev;
      if( sc_errcheck(err, "obtaining device info", card, dev) ) 
         goto nextdev;
      nsubd= snd_pcm_info_get_subdevices_count(pcminfo);
      if( sc_errcheck(nsubd, "obtaining device info", card, dev) ) 
         goto nextdev;

      printf(
         "  Device %d, ID `%s', name `%s', %d subdevices (%d available)\n",
         dev, snd_pcm_info_get_id(pcminfo), snd_pcm_info_get_name(pcminfo),
         nsubd, snd_pcm_info_get_subdevices_avail(pcminfo));
      snprintf(hwdev, HWDEVLEN, HWDEVTEMPL, card, dev);

      err= snd_pcm_open(&pcm, hwdev, stream, SND_PCM_NONBLOCK);
      if( sc_errcheck(err, "opening sound device", card, dev) ) goto nextdev;
      err= snd_pcm_hw_params_any(pcm, pars);
      if( sc_errcheck(err, "obtaining hardware parameters", card, dev) ) {
         snd_pcm_close(pcm);
         goto nextdev;
      }
      snd_pcm_hw_params_get_channels_min(pars, &min);
      snd_pcm_hw_params_get_channels_max(pars, &max);
      if( min == max )
         if( min == 1 )   
            printf("    1 channel, ");
         else      
            printf("    %d channels, ", min);
      else      
         printf("    %u..%u channels, ", min, max);

      /* Find and print out min/max sampling rates. */
      snd_pcm_hw_params_get_rate_min(pars, &min, NULL);
      snd_pcm_hw_params_get_rate_max(pars, &max, NULL);
      printf("sampling rate %u..%u Hz\n", min, max);

      /* Find and print out possible PCM formats. */
      snd_pcm_hw_params_get_format_mask(pars, fmask);
      printf("    Sample formats: ");
      printfmtmask(fmask);
      printf("\n");

      /* Find and print out min/max buffer and period sizes. */
      err = snd_pcm_hw_params_get_buffer_size_min(
         pars, &buffer_size_min);
      err = snd_pcm_hw_params_get_buffer_size_max( 
         pars, &buffer_size_max);
      err = snd_pcm_hw_params_get_period_size_min(
         pars, &period_size_min, NULL);
      err = snd_pcm_hw_params_get_period_size_max(
         pars, &period_size_max, NULL);

      printf("    Buffer size range from %lu to %lu\n",
             buffer_size_min, buffer_size_max);
      printf("    Period size range from %lu to %lu\n",
             period_size_min, period_size_max);


      snd_pcm_close(pcm);
      pcm= NULL;

      for( subd= 0; subd< nsubd; ++subd ) {
         snd_pcm_info_set_subdevice(pcminfo, subd);
         err= snd_ctl_pcm_info(handle, pcminfo);
         if( sc_errcheck(err, "obtaining subdevice info", card, dev) ) 
            goto nextdev;

         printf("      Subdevice %d, name `%s'\n", 
                subd, snd_pcm_info_get_subdevice_name(pcminfo));
      }

      nextdev:
            if( thedev >= 0 || snd_ctl_pcm_next_device(handle, &dev) < 0 )
               break;
    }
    snd_ctl_close(handle);
    nextcard:
        if( thecard >= 0 || snd_card_next(&card) < 0 )
           break;
  }
}


int sc_errcheck(int retval, const char *doingwhat, int cardnr, int devnr)
{
  if( retval<0 ) {
    if( devnr>= 0 )
      fprintf(stderr, "Error %s for card %d, device %d: %s.  Skipping.\n", doingwhat, cardnr, devnr, alsaerrstr(retval));
    else
      fprintf(stderr, "Error %s for card %d: %s.  Skipping.\n", doingwhat, cardnr, alsaerrstr(retval));
    return 1;
  }
  return 0;
}



/*============================================================================
   Function for investigating device configurations
============================================================================*/

void testconfig(snd_pcm_stream_t stream, const char *device, const int *hwpars)
{
  unsigned min, max, param;
  int err, count, dir, result;
  snd_pcm_uframes_t     period_size_min;
  snd_pcm_uframes_t     period_size_max;
  snd_pcm_uframes_t     buffer_size_min;
  snd_pcm_uframes_t     buffer_size_max;

  printf("*** Exploring configuration space of device `%s' for %s ***\n", device,
     stream==SND_PCM_STREAM_CAPTURE? "recording" : "playback");
  err= snd_pcm_open(&pcm, device, stream, SND_PCM_NONBLOCK);
  tc_errcheck(err, "opening sound device");
  err= snd_pcm_hw_params_any(pcm, pars);
  tc_errcheck(err, "initialising hardware parameters");
  for( count= 0; hwpars[count]!=HWP_END; count += 2 )
    
    switch(hwpars[count])
    {
      case HWP_RATE:param= hwpars[count+1];
                err= snd_pcm_hw_params_set_rate_near(pcm, pars, &param, &result);
                if( err<0 )
            fprintf(stderr, "Could not set sampling rate to %d Hz: %s.  "
        "Continuing regardless.\n", hwpars[count+1], alsaerrstr(err));
          else
            printf("Set sampling rate %d Hz --> got %u Hz, %s requested.\n", hwpars[count+1], param, dirstr(dir));
        break;
      case HWP_NCH:err= snd_pcm_hw_params_set_channels(pcm, pars, hwpars[count+1]);
               if( err<0 )
           fprintf(stderr, "Could not set # of channels to %d: %s.  "
        "Continuing regardless.\n", hwpars[count+1], alsaerrstr(err));
          else
            printf("Set number of channels to %d.\n", hwpars[count+1]);
        break;
      case HWP_FORMAT:err= snd_pcm_hw_params_set_format(pcm, pars, hwpars[count+1]);
            if( err<0 )
              fprintf(stderr, "Could not set sample format to %s: %s."
       "  Continuing regardless.\n", alsafmtstr(hwpars[count+1]), alsaerrstr(err));
             else
           printf("Set sample format to %s.\n", alsafmtstr(hwpars[count+1]));
        break;
      default:
        break;
    }
  if( count>0 )
    printf("Parameter ranges remaining after these settings:\n");
  snd_pcm_hw_params_get_channels_min(pars, &min);
  snd_pcm_hw_params_get_channels_max(pars, &max);
  if( min==max )
    if( min==1 )
      printf("1 channel\n");
    else
      printf("%u channels\n", min);
  else
    printf("%u..%u channels\n", min, max);
  snd_pcm_hw_params_get_rate_min(pars, &min, NULL);
  snd_pcm_hw_params_get_rate_max(pars, &max, NULL);
  if( min==max )
    printf("Sampling rate %u Hz\n", min);
  else
    printf("Sampling rate %u..%u Hz\n", min, max);

  /* Find and print out possible PCM formats. */
  snd_pcm_hw_params_get_format_mask(pars, fmask);
  printf("    Sample formats: ");
  printfmtmask(fmask);
  printf("\n");

  /* Find and print out min/max buffer and period sizes. */
  err = snd_pcm_hw_params_get_buffer_size_min(
     pars, &buffer_size_min);
  err = snd_pcm_hw_params_get_buffer_size_max( 
     pars, &buffer_size_max);
  err = snd_pcm_hw_params_get_period_size_min(
     pars, &period_size_min, NULL);
  err = snd_pcm_hw_params_get_period_size_max(
     pars, &period_size_max, NULL);

  printf("    Buffer size range from %lu to %lu\n",
         buffer_size_min, buffer_size_max);
  printf("    Period size range from %lu to %lu\n",
         period_size_min, period_size_max);

  result= snd_pcm_hw_params_get_sbits(pars);
  if( result >= 0 )    // only available if bit width of all formats is the same
    printf("Significant bits: %d\n", result);
  snd_pcm_close(pcm);
}


void tc_errcheck(int retval, const char *doingwhat)
{
  if( retval<0 ) {
    fprintf(stderr, "Error %s: %s.  Aborting.\n", doingwhat, alsaerrstr(retval));
    if( pcm )
      snd_pcm_close(pcm);
    exit(1);
  }
}


/*============================================================================
         String-building functions
============================================================================*/

struct alsaerr { int err; char *msg; };
struct alsaerr aelist[]= {
  -EBADFD, "PCM device is in a bad state",
  -EPIPE, "An underrun occurred",
  -ESTRPIPE, "A suspend event occurred",
  -ENOTTY, "Hotplug device has been removed",
  -ENODEV, "Hotplug device has been removed",
  -ENOENT, "Device does not exist",
  0, NULL
};
const char *alsaerrstr(const int errcode)
{
  struct alsaerr *search;

  if( errcode >= 0 )
    return "No error";
  for( search= aelist; search->msg && search->err!=errcode; ++search);
  if( search->msg )
    return search->msg;
  else
    return strerror(-errcode);
}


const char *dirstr(int dir)
{
  if( !dir )
    return "=";
  else if( dir<0 )
    return "<";
  else
    return ">";
}


/*============================================================================
      Functions for parsing and string output of ALSA sample formats
============================================================================*/

struct fmtdef { char *fmtname; int format; };
static struct fmtdef fmtlist[]= {
  "S8", SND_PCM_FORMAT_S8,
  "U8", SND_PCM_FORMAT_U8,
  "S16_LE", SND_PCM_FORMAT_S16_LE,
  "S16_BE", SND_PCM_FORMAT_S16_BE,
  "U16_LE", SND_PCM_FORMAT_U16_LE,
  "U16_BE", SND_PCM_FORMAT_U16_BE,
  "S24_LE", SND_PCM_FORMAT_S24_LE,
  "S24_BE", SND_PCM_FORMAT_S24_BE,
  "U24_LE", SND_PCM_FORMAT_U24_LE,
  "U24_BE", SND_PCM_FORMAT_U24_BE,
  "S32_LE", SND_PCM_FORMAT_S32_LE,
  "S32_BE", SND_PCM_FORMAT_S32_BE,
  "U32_LE", SND_PCM_FORMAT_U32_LE,
  "U32_BE", SND_PCM_FORMAT_U32_BE,
  "FLOAT_LE", SND_PCM_FORMAT_FLOAT_LE,
  "FLOAT_BE", SND_PCM_FORMAT_FLOAT_BE,
  "FLOAT64_LE", SND_PCM_FORMAT_FLOAT64_LE,
  "FLOAT64_BE", SND_PCM_FORMAT_FLOAT64_BE,
  "IEC958_SUBFRAME_LE", SND_PCM_FORMAT_IEC958_SUBFRAME_LE,
  "IEC958_SUBFRAME_BE", SND_PCM_FORMAT_IEC958_SUBFRAME_BE,
  "MU_LAW", SND_PCM_FORMAT_MU_LAW,
  "A_LAW", SND_PCM_FORMAT_A_LAW,
  "IMA_ADPCM", SND_PCM_FORMAT_IMA_ADPCM,
  "MPEG", SND_PCM_FORMAT_MPEG,
  "GSM", SND_PCM_FORMAT_GSM,
  "SPECIAL", SND_PCM_FORMAT_SPECIAL,
  "S24_3LE", SND_PCM_FORMAT_S24_3LE,
  "S24_3BE", SND_PCM_FORMAT_S24_3BE,
  "U24_3LE", SND_PCM_FORMAT_U24_3LE,
  "U24_3BE", SND_PCM_FORMAT_U24_3BE,
  "S20_3LE", SND_PCM_FORMAT_S20_3LE,
  "S20_3BE", SND_PCM_FORMAT_S20_3BE,
  "U20_3LE", SND_PCM_FORMAT_U20_3LE,
  "U20_3BE", SND_PCM_FORMAT_U20_3BE,
  "S18_3LE", SND_PCM_FORMAT_S18_3LE,
  "S18_3BE", SND_PCM_FORMAT_S18_3BE,
  "U18_3LE", SND_PCM_FORMAT_U18_3LE,
  "U18_3BE", SND_PCM_FORMAT_U18_3BE,
  "S16", SND_PCM_FORMAT_S16,
  "U16", SND_PCM_FORMAT_U16,
  "S24", SND_PCM_FORMAT_S24,
  "U24", SND_PCM_FORMAT_U24,
  "S32", SND_PCM_FORMAT_S32,
  "U32", SND_PCM_FORMAT_U32,
  "FLOAT", SND_PCM_FORMAT_FLOAT,
  "FLOAT64", SND_PCM_FORMAT_FLOAT64,
  "IEC958_SUBFRAME", SND_PCM_FORMAT_IEC958_SUBFRAME,
  NULL, 0
};

int parse_alsaformat(const char *fmtstr)
{
  struct fmtdef *search;

  for( search= fmtlist; search->fmtname && strcmp(search->fmtname, fmtstr); ++search );
  if( !search->fmtname ) {
    fprintf(stderr, "Unknown sample format `%s'.  Aborting.\n", fmtstr);
    exit(1);
  }
  return search->format;
}

const char *alsafmtstr(int fmtnum)
{
  struct fmtdef *search;

  for( search= fmtlist; search->fmtname && search->format!=fmtnum; ++search );
  if( !search->fmtname )
    return "(unknown)";
  else
    return search->fmtname;
}


/*============================================================================
               Printout functions
============================================================================*/

void printfmtmask(const snd_pcm_format_mask_t *fmask)
{
  int fmt, prevformat= 0;

  for( fmt= 0; fmt <= SND_PCM_FORMAT_LAST; ++fmt )
    if( snd_pcm_format_mask_test(fmask, (snd_pcm_format_t)fmt) ) {
      if( prevformat )
   printf(", ");
      printf("%s", snd_pcm_format_name((snd_pcm_format_t)fmt));
      prevformat= 1;
    }
  if( !prevformat )
    printf("(none)");
}