diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-10-24 16:27:21 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-10-24 16:27:21 +0000 |
commit | 89126a3cbbcf065479cee0993dfd15dd1999b1c6 (patch) | |
tree | 3ad813e2dbaeac0b96d9efec78b031af74ebf667 /sys | |
parent | bc918138488d9f4c27e694d2a7746763a81f4f51 (diff) |
add mpeg_l3 encodings (after l1 and l2), define strings for center, depth, lfe
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/audioio.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/sys/audioio.h b/sys/sys/audioio.h index 2754a088dfe..2b9515beb2b 100644 --- a/sys/sys/audioio.h +++ b/sys/sys/audioio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: audioio.h,v 1.13 2001/06/22 14:10:59 deraadt Exp $ */ +/* $OpenBSD: audioio.h,v 1.14 2001/10/24 16:27:20 mickey Exp $ */ /* $NetBSD: audioio.h,v 1.24 1998/08/13 06:28:41 mrg Exp $ */ /* @@ -126,6 +126,9 @@ typedef struct audio_offset { #define AUDIO_ENCODING_MPEG_L2_STREAM 15 #define AUDIO_ENCODING_MPEG_L2_PACKETS 16 #define AUDIO_ENCODING_MPEG_L2_SYSTEM 17 +#define AUDIO_ENCODING_MPEG_L3_STREAM 18 +#define AUDIO_ENCODING_MPEG_L3_PACKETS 19 +#define AUDIO_ENCODING_MPEG_L3_SYSTEM 20 typedef struct audio_encoding { int index; @@ -297,6 +300,9 @@ typedef struct mixer_ctrl { #define AudioNdelay "delay" #define AudioNselect "select" /* select destination */ #define AudioNvideo "video" +#define AudioNcenter "center" +#define AudioNdepth "depth" +#define AudioNlfe "lfe" #define AudioEmulaw "mulaw" #define AudioEalaw "alaw" |