summaryrefslogtreecommitdiff
path: root/include/alsa/asoundef.h
blob: c9124b26774e21d2de973c5eee3777d19366fad7 (plain)
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
/**
 * \file include/asoundef.h
 * \brief Application interface library for the ALSA driver
 * \author Jaroslav Kysela <perex@perex.cz>
 * \author Abramo Bagnara <abramo@alsa-project.org>
 * \author Takashi Iwai <tiwai@suse.de>
 * \date 1998-2001
 *
 * Definitions of constants for the ALSA driver
 */
/*
 *   This library is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Lesser General Public License as
 *   published by the Free Software Foundation; either version 2.1 of
 *   the License, or (at your option) any later version.
 *
 *   This program 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 Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public
 *   License along with this library; if not, write to the Free Software
 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef __ALSA_ASOUNDEF_H
#define __ALSA_ASOUNDEF_H

#ifdef __cplusplus
extern "C" {
#endif

/**
 * \defgroup Digital_Audio_Interface Constants for Digital Audio Interfaces
 * AES/IEC958 channel status bits.
 * \{
 */

#define IEC958_AES0_PROFESSIONAL        (1<<0)  /**< 0 = consumer, 1 = professional */
#define IEC958_AES0_NONAUDIO            (1<<1)  /**< 0 = audio, 1 = non-audio */
#define IEC958_AES0_PRO_EMPHASIS        (7<<2)  /**< mask - emphasis */
#define IEC958_AES0_PRO_EMPHASIS_NOTID  (0<<2)  /**< emphasis not indicated */
#define IEC958_AES0_PRO_EMPHASIS_NONE   (1<<2)  /**< no emphasis */
#define IEC958_AES0_PRO_EMPHASIS_5015   (3<<2)  /**< 50/15us emphasis */
#define IEC958_AES0_PRO_EMPHASIS_CCITT  (7<<2)  /**< CCITT J.17 emphasis */
#define IEC958_AES0_PRO_FREQ_UNLOCKED   (1<<5)  /**< source sample frequency: 0 = locked, 1 = unlocked */
#define IEC958_AES0_PRO_FS              (3<<6)  /**< mask - sample frequency */
#define IEC958_AES0_PRO_FS_NOTID        (0<<6)  /**< fs not indicated */
#define IEC958_AES0_PRO_FS_44100        (1<<6)  /**< 44.1kHz */
#define IEC958_AES0_PRO_FS_48000        (2<<6)  /**< 48kHz */
#define IEC958_AES0_PRO_FS_32000        (3<<6)  /**< 32kHz */
#define IEC958_AES0_CON_NOT_COPYRIGHT   (1<<2)  /**< 0 = copyright, 1 = not copyright */
#define IEC958_AES0_CON_EMPHASIS        (7<<3)  /**< mask - emphasis */
#define IEC958_AES0_CON_EMPHASIS_NONE   (0<<3)  /**< no emphasis */
#define IEC958_AES0_CON_EMPHASIS_5015   (1<<3)  /**< 50/15us emphasis */
#define IEC958_AES0_CON_MODE            (3<<6)  /**< mask - mode */
#define IEC958_AES1_PRO_MODE            (15<<0/**< mask - channel mode */
#define IEC958_AES1_PRO_MODE_NOTID      (0<<0)  /**< mode not indicated */
#define IEC958_AES1_PRO_MODE_STEREOPHONIC (2<<0/**< stereophonic - ch A is left */
#define IEC958_AES1_PRO_MODE_SINGLE     (4<<0)  /**< single channel */
#define IEC958_AES1_PRO_MODE_TWO        (8<<0)  /**< two channels */
#define IEC958_AES1_PRO_MODE_PRIMARY    (12<<0/**< primary/secondary */
#define IEC958_AES1_PRO_MODE_BYTE3      (15<<0/**< vector to byte 3 */
#define IEC958_AES1_PRO_USERBITS        (15<<4/**< mask - user bits */
#define IEC958_AES1_PRO_USERBITS_NOTID  (0<<4)  /**< user bits not indicated */
#define IEC958_AES1_PRO_USERBITS_192    (8<<4)  /**< 192-bit structure */
#define IEC958_AES1_PRO_USERBITS_UDEF   (12<<4/**< user defined application */
#define IEC958_AES1_CON_CATEGORY        0x7f    /**< consumer category */
#define IEC958_AES1_CON_GENERAL         0x00    /**< general category */
#define IEC958_AES1_CON_LASEROPT_MASK   0x07    /**< Laser-optical mask */
#define IEC958_AES1_CON_LASEROPT_ID     0x01    /**< Laser-optical ID */
#define IEC958_AES1_CON_IEC908_CD       (IEC958_AES1_CON_LASEROPT_ID|0x00)      /**< IEC958 CD compatible device */
#define IEC958_AES1_CON_NON_IEC908_CD   (IEC958_AES1_CON_LASEROPT_ID|0x08)      /**< non-IEC958 CD compatible device */
#define IEC958_AES1_CON_MINI_DISC       (IEC958_AES1_CON_LASEROPT_ID|0x48)      /**< Mini-Disc device */
#define IEC958_AES1_CON_DVD             (IEC958_AES1_CON_LASEROPT_ID|0x18)      /**< DVD device */
#define IEC958_AES1_CON_LASTEROPT_OTHER (IEC958_AES1_CON_LASEROPT_ID|0x78)      /**< Other laser-optical product */
#define IEC958_AES1_CON_DIGDIGCONV_MASK 0x07    /**< digital<->digital converter mask */
#define IEC958_AES1_CON_DIGDIGCONV_ID   0x02    /**< digital<->digital converter id */
#define IEC958_AES1_CON_PCM_CODER       (IEC958_AES1_CON_DIGDIGCONV_ID|0x00)    /**< PCM coder */
#define IEC958_AES1_CON_MIXER           (IEC958_AES1_CON_DIGDIGCONV_ID|0x10)    /**< Digital signal mixer */
#define IEC958_AES1_CON_RATE_CONVERTER  (IEC958_AES1_CON_DIGDIGCONV_ID|0x18)    /**< Rate converter */
#define IEC958_AES1_CON_SAMPLER         (IEC958_AES1_CON_DIGDIGCONV_ID|0x20)    /**< PCM sampler */
#define IEC958_AES1_CON_DSP             (IEC958_AES1_CON_DIGDIGCONV_ID|0x28)    /**< Digital sound processor */
#define IEC958_AES1_CON_DIGDIGCONV_OTHER (IEC958_AES1_CON_DIGDIGCONV_ID|0x78)   /**< Other digital<->digital product */
#define IEC958_AES1_CON_MAGNETIC_MASK   0x07    /**< Magnetic device mask */
#define IEC958_AES1_CON_MAGNETIC_ID     0x03    /**< Magnetic device ID */
#define IEC958_AES1_CON_DAT             (IEC958_AES1_CON_MAGNETIC_ID|0x00)      /**< Digital Audio Tape */
#define IEC958_AES1_CON_VCR             (IEC958_AES1_CON_MAGNETIC_ID|0x08)      /**< Video recorder */
#define IEC958_AES1_CON_DCC             (IEC958_AES1_CON_MAGNETIC_ID|0x40)      /**< Digital compact cassette */
#define IEC958_AES1_CON_MAGNETIC_DISC   (IEC958_AES1_CON_MAGNETIC_ID|0x18)      /**< Magnetic disc digital audio device */
#define IEC958_AES1_CON_MAGNETIC_OTHER  (IEC958_AES1_CON_MAGNETIC_ID|0x78)      /**< Other magnetic device */
#define IEC958_AES1_CON_BROADCAST1_MASK 0x07    /**< Broadcast mask */
#define IEC958_AES1_CON_BROADCAST1_ID   0x04    /**< Broadcast ID */
#define IEC958_AES1_CON_DAB_JAPAN       (IEC958_AES1_CON_BROADCAST1_ID|0x00)    /**< Digital audio broadcast (Japan) */
#define IEC958_AES1_CON_DAB_EUROPE      (IEC958_AES1_CON_BROADCAST1_ID|0x08)    /**< Digital audio broadcast (Europe) */
#define IEC958_AES1_CON_DAB_USA         (IEC958_AES1_CON_BROADCAST1_ID|0x60)    /**< Digital audio broadcast (USA) */
#define IEC958_AES1_CON_SOFTWARE        (IEC958_AES1_CON_BROADCAST1_ID|0x40)    /**< Electronic software delivery */
#define IEC958_AES1_CON_IEC62105        (IEC958_AES1_CON_BROADCAST1_ID|0x20)    /**< Used by another standard (IEC 62105) */
#define IEC958_AES1_CON_BROADCAST1_OTHER (IEC958_AES1_CON_BROADCAST1_ID|0x78)   /**< Other broadcast product */
#define IEC958_AES1_CON_BROADCAST2_MASK 0x0f    /**< Broadcast alternative mask */
#define IEC958_AES1_CON_BROADCAST2_ID   0x0e    /**< Broadcast alternative ID */
#define IEC958_AES1_CON_MUSICAL_MASK    0x07    /**< Musical device mask */
#define IEC958_AES1_CON_MUSICAL_ID      0x05    /**< Musical device ID */
#define IEC958_AES1_CON_SYNTHESIZER     (IEC958_AES1_CON_MUSICAL_ID|0x00)       /**< Synthesizer */
#define IEC958_AES1_CON_MICROPHONE      (IEC958_AES1_CON_MUSICAL_ID|0x08)       /**< Microphone */
#define IEC958_AES1_CON_MUSICAL_OTHER   (IEC958_AES1_CON_MUSICAL_ID|0x78)       /**< Other musical device */
#define IEC958_AES1_CON_ADC_MASK        0x1f    /**< ADC Mask */
#define IEC958_AES1_CON_ADC_ID          0x06    /**< ADC ID */