Added --card and --iec958r (raw IEC958 PCM).

This commit is contained in:
Jaroslav Kysela 2001-07-30 08:33:17 +00:00
parent c76b0f7815
commit 04255b61c5
3 changed files with 25 additions and 5 deletions

View file

@ -26,11 +26,12 @@
typedef struct {
const char *pcm_name;
char *card;
int bits;
int rate;
int channels;
int quiet: 1;
enum {SPDIF_NONE = 0, SPDIF_CON, SPDIF_PRO} spdif;
enum {SPDIF_NONE = 0, SPDIF_CON, SPDIF_PRO, SPDIF_PCM} spdif;
} output_t;
int output_open(output_t *output);