annotate libao2/afmt.h @ 7138:8ab4d11353ae

Fixed some small HTML errors. Patch by Andras Mohari <mayday@varoshaza.nagyatad.hu>.
author diego
date Thu, 29 Aug 2002 13:04:01 +0000
parents 02576893af2a
children 41e8d0916c60
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1058
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
1
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
2 /* Defines that AFMT_ stuff */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
3
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
4 #ifdef HAVE_SYS_SOUNDCARD_H
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
5 #include <sys/soundcard.h> /* For AFMT_* on linux */
5872
02576893af2a OpenBSD, NetBSD portability patches by
arpi
parents: 1058
diff changeset
6 #else
02576893af2a OpenBSD, NetBSD portability patches by
arpi
parents: 1058
diff changeset
7 #ifdef HAVE_SOUNDCARD_H
02576893af2a OpenBSD, NetBSD portability patches by
arpi
parents: 1058
diff changeset
8 #include <soundcard.h> /* OpenBSD have this instead of <sys/soundcard> */
02576893af2a OpenBSD, NetBSD portability patches by
arpi
parents: 1058
diff changeset
9 #endif
1058
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
10 #endif
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
11
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
12 /* standard, old OSS audio formats */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
13 #ifndef AFMT_MU_LAW
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
14 # define AFMT_MU_LAW 0x00000001
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
15 # define AFMT_A_LAW 0x00000002
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
16 # define AFMT_IMA_ADPCM 0x00000004
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
17 # define AFMT_U8 0x00000008
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
18 # define AFMT_S16_LE 0x00000010 /* Little endian signed 16*/
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
19 # define AFMT_S16_BE 0x00000020 /* Big endian signed 16 */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
20 # define AFMT_S8 0x00000040
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
21 # define AFMT_U16_LE 0x00000080 /* Little endian U16 */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
22 # define AFMT_U16_BE 0x00000100 /* Big endian U16 */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
23 #endif
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
24
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
25 #ifndef AFMT_MPEG
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
26 # define AFMT_MPEG 0x00000200 /* MPEG (2) audio */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
27 #endif
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
28
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
29 #ifndef AFMT_AC3
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
30 # define AFMT_AC3 0x00000400 /* Dolby Digital AC3 */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
31 #endif
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
32
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
33 /* 32 bit formats (MSB aligned) formats */
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
34 #ifndef AFMT_S32_LE
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
35 # define AFMT_S32_LE 0x00001000
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
36 # define AFMT_S32_BE 0x00002000
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
37 #endif
cab5ba9ffc6c fixed AFMT_ stuff (inclue afmt.h)
arpi_esp
parents:
diff changeset
38