asoundef.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. /**
  2. * \file include/asoundef.h
  3. * \brief Application interface library for the ALSA driver
  4. * \author Jaroslav Kysela <perex@perex.cz>
  5. * \author Abramo Bagnara <abramo@alsa-project.org>
  6. * \author Takashi Iwai <tiwai@suse.de>
  7. * \date 1998-2001
  8. *
  9. * Definitions of constants for the ALSA driver
  10. */
  11. /*
  12. * This library is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU Lesser General Public License as
  14. * published by the Free Software Foundation; either version 2.1 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Lesser General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Lesser General Public
  23. * License along with this library; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. *
  26. */
  27. #ifndef __ALSA_ASOUNDEF_H
  28. #define __ALSA_ASOUNDEF_H
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /**
  33. * \defgroup Digital_Audio_Interface Constants for Digital Audio Interfaces
  34. * AES/IEC958 channel status bits.
  35. * \{
  36. */
  37. #define IEC958_AES0_PROFESSIONAL (1<<0) /**< 0 = consumer, 1 = professional */
  38. #define IEC958_AES0_NONAUDIO (1<<1) /**< 0 = audio, 1 = non-audio */
  39. #define IEC958_AES0_PRO_EMPHASIS (7<<2) /**< mask - emphasis */
  40. #define IEC958_AES0_PRO_EMPHASIS_NOTID (0<<2) /**< emphasis not indicated */
  41. #define IEC958_AES0_PRO_EMPHASIS_NONE (1<<2) /**< no emphasis */
  42. #define IEC958_AES0_PRO_EMPHASIS_5015 (3<<2) /**< 50/15us emphasis */
  43. #define IEC958_AES0_PRO_EMPHASIS_CCITT (7<<2) /**< CCITT J.17 emphasis */
  44. #define IEC958_AES0_PRO_FREQ_UNLOCKED (1<<5) /**< source sample frequency: 0 = locked, 1 = unlocked */
  45. #define IEC958_AES0_PRO_FS (3<<6) /**< mask - sample frequency */
  46. #define IEC958_AES0_PRO_FS_NOTID (0<<6) /**< fs not indicated */
  47. #define IEC958_AES0_PRO_FS_44100 (1<<6) /**< 44.1kHz */
  48. #define IEC958_AES0_PRO_FS_48000 (2<<6) /**< 48kHz */
  49. #define IEC958_AES0_PRO_FS_32000 (3<<6) /**< 32kHz */
  50. #define IEC958_AES0_CON_NOT_COPYRIGHT (1<<2) /**< 0 = copyright, 1 = not copyright */
  51. #define IEC958_AES0_CON_EMPHASIS (7<<3) /**< mask - emphasis */
  52. #define IEC958_AES0_CON_EMPHASIS_NONE (0<<3) /**< no emphasis */
  53. #define IEC958_AES0_CON_EMPHASIS_5015 (1<<3) /**< 50/15us emphasis */
  54. #define IEC958_AES0_CON_MODE (3<<6) /**< mask - mode */
  55. #define IEC958_AES1_PRO_MODE (15<<0) /**< mask - channel mode */
  56. #define IEC958_AES1_PRO_MODE_NOTID (0<<0) /**< mode not indicated */
  57. #define IEC958_AES1_PRO_MODE_STEREOPHONIC (2<<0) /**< stereophonic - ch A is left */
  58. #define IEC958_AES1_PRO_MODE_SINGLE (4<<0) /**< single channel */
  59. #define IEC958_AES1_PRO_MODE_TWO (8<<0) /**< two channels */
  60. #define IEC958_AES1_PRO_MODE_PRIMARY (12<<0) /**< primary/secondary */
  61. #define IEC958_AES1_PRO_MODE_BYTE3 (15<<0) /**< vector to byte 3 */
  62. #define IEC958_AES1_PRO_USERBITS (15<<4) /**< mask - user bits */
  63. #define IEC958_AES1_PRO_USERBITS_NOTID (0<<4) /**< user bits not indicated */
  64. #define IEC958_AES1_PRO_USERBITS_192 (8<<4) /**< 192-bit structure */
  65. #define IEC958_AES1_PRO_USERBITS_UDEF (12<<4) /**< user defined application */
  66. #define IEC958_AES1_CON_CATEGORY 0x7f /**< consumer category */
  67. #define IEC958_AES1_CON_GENERAL 0x00 /**< general category */
  68. #define IEC958_AES1_CON_LASEROPT_MASK 0x07 /**< Laser-optical mask */
  69. #define IEC958_AES1_CON_LASEROPT_ID 0x01 /**< Laser-optical ID */
  70. #define IEC958_AES1_CON_IEC908_CD (IEC958_AES1_CON_LASEROPT_ID|0x00) /**< IEC958 CD compatible device */
  71. #define IEC958_AES1_CON_NON_IEC908_CD (IEC958_AES1_CON_LASEROPT_ID|0x08) /**< non-IEC958 CD compatible device */
  72. #define IEC958_AES1_CON_MINI_DISC (IEC958_AES1_CON_LASEROPT_ID|0x48) /**< Mini-Disc device */
  73. #define IEC958_AES1_CON_DVD (IEC958_AES1_CON_LASEROPT_ID|0x18) /**< DVD device */
  74. #define IEC958_AES1_CON_LASTEROPT_OTHER (IEC958_AES1_CON_LASEROPT_ID|0x78) /**< Other laser-optical product */
  75. #define IEC958_AES1_CON_DIGDIGCONV_MASK 0x07 /**< digital<->digital converter mask */
  76. #define IEC958_AES1_CON_DIGDIGCONV_ID 0x02 /**< digital<->digital converter id */
  77. #define IEC958_AES1_CON_PCM_CODER (IEC958_AES1_CON_DIGDIGCONV_ID|0x00) /**< PCM coder */
  78. #define IEC958_AES1_CON_MIXER (IEC958_AES1_CON_DIGDIGCONV_ID|0x10) /**< Digital signal mixer */
  79. #define IEC958_AES1_CON_RATE_CONVERTER (IEC958_AES1_CON_DIGDIGCONV_ID|0x18) /**< Rate converter */
  80. #define IEC958_AES1_CON_SAMPLER (IEC958_AES1_CON_DIGDIGCONV_ID|0x20) /**< PCM sampler */
  81. #define IEC958_AES1_CON_DSP (IEC958_AES1_CON_DIGDIGCONV_ID|0x28) /**< Digital sound processor */
  82. #define IEC958_AES1_CON_DIGDIGCONV_OTHER (IEC958_AES1_CON_DIGDIGCONV_ID|0x78) /**< Other digital<->digital product */
  83. #define IEC958_AES1_CON_MAGNETIC_MASK 0x07 /**< Magnetic device mask */
  84. #define IEC958_AES1_CON_MAGNETIC_ID 0x03 /**< Magnetic device ID */
  85. #define IEC958_AES1_CON_DAT (IEC958_AES1_CON_MAGNETIC_ID|0x00) /**< Digital Audio Tape */
  86. #define IEC958_AES1_CON_VCR (IEC958_AES1_CON_MAGNETIC_ID|0x08) /**< Video recorder */
  87. #define IEC958_AES1_CON_DCC (IEC958_AES1_CON_MAGNETIC_ID|0x40) /**< Digital compact cassette */
  88. #define IEC958_AES1_CON_MAGNETIC_DISC (IEC958_AES1_CON_MAGNETIC_ID|0x18) /**< Magnetic disc digital audio device */
  89. #define IEC958_AES1_CON_MAGNETIC_OTHER (IEC958_AES1_CON_MAGNETIC_ID|0x78) /**< Other magnetic device */
  90. #define IEC958_AES1_CON_BROADCAST1_MASK 0x07 /**< Broadcast mask */
  91. #define IEC958_AES1_CON_BROADCAST1_ID 0x04 /**< Broadcast ID */
  92. #define IEC958_AES1_CON_DAB_JAPAN (IEC958_AES1_CON_BROADCAST1_ID|0x00) /**< Digital audio broadcast (Japan) */
  93. #define IEC958_AES1_CON_DAB_EUROPE (IEC958_AES1_CON_BROADCAST1_ID|0x08) /**< Digital audio broadcast (Europe) */
  94. #define IEC958_AES1_CON_DAB_USA (IEC958_AES1_CON_BROADCAST1_ID|0x60) /**< Digital audio broadcast (USA) */
  95. #define IEC958_AES1_CON_SOFTWARE (IEC958_AES1_CON_BROADCAST1_ID|0x40) /**< Electronic software delivery */
  96. #define IEC958_AES1_CON_IEC62105 (IEC958_AES1_CON_BROADCAST1_ID|0x20) /**< Used by another standard (IEC 62105) */
  97. #define IEC958_AES1_CON_BROADCAST1_OTHER (IEC958_AES1_CON_BROADCAST1_ID|0x78) /**< Other broadcast product */
  98. #define IEC958_AES1_CON_BROADCAST2_MASK 0x0f /**< Broadcast alternative mask */
  99. #define IEC958_AES1_CON_BROADCAST2_ID 0x0e /**< Broadcast alternative ID */
  100. #define IEC958_AES1_CON_MUSICAL_MASK 0x07 /**< Musical device mask */
  101. #define IEC958_AES1_CON_MUSICAL_ID 0x05 /**< Musical device ID */
  102. #define IEC958_AES1_CON_SYNTHESIZER (IEC958_AES1_CON_MUSICAL_ID|0x00) /**< Synthesizer */
  103. #define IEC958_AES1_CON_MICROPHONE (IEC958_AES1_CON_MUSICAL_ID|0x08) /**< Microphone */
  104. #define IEC958_AES1_CON_MUSICAL_OTHER (IEC958_AES1_CON_MUSICAL_ID|0x78) /**< Other musical device */
  105. #define IEC958_AES1_CON_ADC_MASK 0x1f /**< ADC Mask */
  106. #define IEC958_AES1_CON_ADC_ID 0x06 /**< ADC ID */
  107. #define IEC958_AES1_CON_ADC (IEC958_AES1_CON_ADC_ID|0x00) /**< ADC without copyright information */
  108. #define IEC958_AES1_CON_ADC_OTHER (IEC958_AES1_CON_ADC_ID|0x60) /**< Other ADC product (with no copyright information) */
  109. #define IEC958_AES1_CON_ADC_COPYRIGHT_MASK 0x1f /**< ADC Copyright mask */
  110. #define IEC958_AES1_CON_ADC_COPYRIGHT_ID 0x16 /**< ADC Copyright ID */
  111. #define IEC958_AES1_CON_ADC_COPYRIGHT (IEC958_AES1_CON_ADC_COPYRIGHT_ID|0x00) /**< ADC with copyright information */
  112. #define IEC958_AES1_CON_ADC_COPYRIGHT_OTHER (IEC958_AES1_CON_ADC_COPYRIGHT_ID|0x60) /**< Other ADC with copyright information product */
  113. #define IEC958_AES1_CON_SOLIDMEM_MASK 0x0f /**< Solid memory based products mask */
  114. #define IEC958_AES1_CON_SOLIDMEM_ID 0x08 /**< Solid memory based products ID */
  115. #define IEC958_AES1_CON_SOLIDMEM_DIGITAL_RECORDER_PLAYER (IEC958_AES1_CON_SOLIDMEM_ID|0x00) /**< Digital audio recorder and player using solid state memory */
  116. #define IEC958_AES1_CON_SOLIDMEM_OTHER (IEC958_AES1_CON_SOLIDMEM_ID|0x70) /**< Other solid state memory based product */
  117. #define IEC958_AES1_CON_EXPERIMENTAL 0x40 /**< experimental category */
  118. #define IEC958_AES1_CON_ORIGINAL (1<<7) /**< this bits depends on the category code */
  119. #define IEC958_AES2_PRO_SBITS (7<<0) /**< mask - sample bits */
  120. #define IEC958_AES2_PRO_SBITS_20 (2<<0) /**< 20-bit - coordination */
  121. #define IEC958_AES2_PRO_SBITS_24 (4<<0) /**< 24-bit - main audio */
  122. #define IEC958_AES2_PRO_SBITS_UDEF (6<<0) /**< user defined application */
  123. #define IEC958_AES2_PRO_WORDLEN (7<<3) /**< mask - source word length */
  124. #define IEC958_AES2_PRO_WORDLEN_NOTID (0<<3) /**< source word length not indicated */
  125. #define IEC958_AES2_PRO_WORDLEN_22_18 (2<<3) /**< 22-bit or 18-bit */
  126. #define IEC958_AES2_PRO_WORDLEN_23_19 (4<<3) /**< 23-bit or 19-bit */
  127. #define IEC958_AES2_PRO_WORDLEN_24_20 (5<<3) /**< 24-bit or 20-bit */
  128. #define IEC958_AES2_PRO_WORDLEN_20_16 (6<<3) /**< 20-bit or 16-bit */
  129. #define IEC958_AES2_CON_SOURCE (15<<0) /**< mask - source number */
  130. #define IEC958_AES2_CON_SOURCE_UNSPEC (0<<0) /**< source number unspecified */
  131. #define IEC958_AES2_CON_CHANNEL (15<<4) /**< mask - channel number */
  132. #define IEC958_AES2_CON_CHANNEL_UNSPEC (0<<4) /**< channel number unspecified */
  133. #define IEC958_AES3_CON_FS (15<<0) /**< mask - sample frequency */
  134. #define IEC958_AES3_CON_FS_44100 (0<<0) /**< 44.1kHz */
  135. #define IEC958_AES3_CON_FS_NOTID (1<<0) /**< sample frequency non indicated */
  136. #define IEC958_AES3_CON_FS_48000 (2<<0) /**< 48kHz */
  137. #define IEC958_AES3_CON_FS_32000 (3<<0) /**< 32kHz */
  138. #define IEC958_AES3_CON_FS_22050 (4<<0) /**< 22.05kHz */
  139. #define IEC958_AES3_CON_FS_24000 (6<<0) /**< 24kHz */
  140. #define IEC958_AES3_CON_FS_88200 (8<<0) /**< 88.2kHz */
  141. #define IEC958_AES3_CON_FS_768000 (9<<0) /**< 768kHz */
  142. #define IEC958_AES3_CON_FS_96000 (10<<0) /**< 96kHz */
  143. #define IEC958_AES3_CON_FS_176400 (12<<0) /**< 176.4kHz */
  144. #define IEC958_AES3_CON_FS_192000 (14<<0) /**< 192kHz */
  145. #define IEC958_AES3_CON_CLOCK (3<<4) /**< mask - clock accuracy */
  146. #define IEC958_AES3_CON_CLOCK_1000PPM (0<<4) /**< 1000 ppm */
  147. #define IEC958_AES3_CON_CLOCK_50PPM (1<<4) /**< 50 ppm */
  148. #define IEC958_AES3_CON_CLOCK_VARIABLE (2<<4) /**< variable pitch */
  149. #define IEC958_AES4_CON_MAX_WORDLEN_24 (1<<0) /**< 0 = 20-bit, 1 = 24-bit */
  150. #define IEC958_AES4_CON_WORDLEN (7<<1) /**< mask - sample word length */
  151. #define IEC958_AES4_CON_WORDLEN_NOTID (0<<1) /**< not indicated */
  152. #define IEC958_AES4_CON_WORDLEN_20_16 (1<<1) /**< 20-bit or 16-bit */
  153. #define IEC958_AES4_CON_WORDLEN_22_18 (2<<1) /**< 22-bit or 18-bit */
  154. #define IEC958_AES4_CON_WORDLEN_23_19 (4<<1) /**< 23-bit or 19-bit */
  155. #define IEC958_AES4_CON_WORDLEN_24_20 (5<<1) /**< 24-bit or 20-bit */
  156. #define IEC958_AES4_CON_WORDLEN_21_17 (6<<1) /**< 21-bit or 17-bit */
  157. #define IEC958_AES4_CON_ORIGFS (15<<4) /**< mask - original sample frequency */
  158. #define IEC958_AES4_CON_ORIGFS_NOTID (0<<4) /**< original sample frequency not indicated */
  159. #define IEC958_AES4_CON_ORIGFS_192000 (1<<4) /**< 192kHz */
  160. #define IEC958_AES4_CON_ORIGFS_12000 (2<<4) /**< 12kHz */
  161. #define IEC958_AES4_CON_ORIGFS_176400 (3<<4) /**< 176.4kHz */
  162. #define IEC958_AES4_CON_ORIGFS_96000 (5<<4) /**< 96kHz */
  163. #define IEC958_AES4_CON_ORIGFS_8000 (6<<4) /**< 8kHz */
  164. #define IEC958_AES4_CON_ORIGFS_88200 (7<<4) /**< 88.2kHz */
  165. #define IEC958_AES4_CON_ORIGFS_16000 (8<<4) /**< 16kHz */
  166. #define IEC958_AES4_CON_ORIGFS_24000 (9<<4) /**< 24kHz */
  167. #define IEC958_AES4_CON_ORIGFS_11025 (10<<4) /**< 11.025kHz */
  168. #define IEC958_AES4_CON_ORIGFS_22050 (11<<4) /**< 22.05kHz */
  169. #define IEC958_AES4_CON_ORIGFS_32000 (12<<4) /**< 32kHz */
  170. #define IEC958_AES4_CON_ORIGFS_48000 (13<<4) /**< 48kHz */
  171. #define IEC958_AES4_CON_ORIGFS_44100 (15<<4) /**< 44.1kHz */
  172. #define IEC958_AES5_CON_CGMSA (3<<0) /**< mask - CGMS-A */
  173. #define IEC958_AES5_CON_CGMSA_COPYFREELY (0<<0) /**< copying is permitted without restriction */
  174. #define IEC958_AES5_CON_CGMSA_COPYONCE (1<<0) /**< one generation of copies may be made */
  175. #define IEC958_AES5_CON_CGMSA_COPYNOMORE (2<<0) /**< condition not be used */
  176. #define IEC958_AES5_CON_CGMSA_COPYNEVER (3<<0) /**< no copying is permitted */
  177. /** \} */
  178. /**
  179. * \defgroup MIDI_Interface Constants for MIDI v1.0
  180. * Constants for MIDI v1.0.
  181. * \{
  182. */
  183. #define MIDI_CHANNELS 16 /**< Number of channels per port/cable. */
  184. #define MIDI_GM_DRUM_CHANNEL (10-1) /**< Channel number for GM drums. */
  185. /**
  186. * \defgroup MIDI_Commands MIDI Commands
  187. * MIDI command codes.
  188. * \{
  189. */
  190. #define MIDI_CMD_NOTE_OFF 0x80 /**< note off */
  191. #define MIDI_CMD_NOTE_ON 0x90 /**< note on */
  192. #define MIDI_CMD_NOTE_PRESSURE 0xa0 /**< key pressure */
  193. #define MIDI_CMD_CONTROL 0xb0 /**< control change */
  194. #define MIDI_CMD_PGM_CHANGE 0xc0 /**< program change */
  195. #define MIDI_CMD_CHANNEL_PRESSURE 0xd0 /**< channel pressure */
  196. #define MIDI_CMD_BENDER 0xe0 /**< pitch bender */
  197. #define MIDI_CMD_COMMON_SYSEX 0xf0 /**< sysex (system exclusive) begin */
  198. #define MIDI_CMD_COMMON_MTC_QUARTER 0xf1 /**< MTC quarter frame */
  199. #define MIDI_CMD_COMMON_SONG_POS 0xf2 /**< song position */
  200. #define MIDI_CMD_COMMON_SONG_SELECT 0xf3 /**< song select */
  201. #define MIDI_CMD_COMMON_TUNE_REQUEST 0xf6 /**< tune request */
  202. #define MIDI_CMD_COMMON_SYSEX_END 0xf7 /**< end of sysex */
  203. #define MIDI_CMD_COMMON_CLOCK 0xf8 /**< clock */
  204. #define MIDI_CMD_COMMON_START 0xfa /**< start */
  205. #define MIDI_CMD_COMMON_CONTINUE 0xfb /**< continue */
  206. #define MIDI_CMD_COMMON_STOP 0xfc /**< stop */
  207. #define MIDI_CMD_COMMON_SENSING 0xfe /**< active sensing */
  208. #define MIDI_CMD_COMMON_RESET 0xff /**< reset */
  209. /** \} */
  210. /**
  211. * \defgroup MIDI_Controllers MIDI Controllers
  212. * MIDI controller numbers.
  213. * \{
  214. */
  215. #define MIDI_CTL_MSB_BANK 0x00 /**< Bank selection */
  216. #define MIDI_CTL_MSB_MODWHEEL 0x01 /**< Modulation */
  217. #define MIDI_CTL_MSB_BREATH 0x02 /**< Breath */
  218. #define MIDI_CTL_MSB_FOOT 0x04 /**< Foot */
  219. #define MIDI_CTL_MSB_PORTAMENTO_TIME 0x05 /**< Portamento time */
  220. #define MIDI_CTL_MSB_DATA_ENTRY 0x06 /**< Data entry */
  221. #define MIDI_CTL_MSB_MAIN_VOLUME 0x07 /**< Main volume */
  222. #define MIDI_CTL_MSB_BALANCE 0x08 /**< Balance */
  223. #define MIDI_CTL_MSB_PAN 0x0a /**< Panpot */
  224. #define MIDI_CTL_MSB_EXPRESSION 0x0b /**< Expression */
  225. #define MIDI_CTL_MSB_EFFECT1 0x0c /**< Effect1 */
  226. #define MIDI_CTL_MSB_EFFECT2 0x0d /**< Effect2 */
  227. #define MIDI_CTL_MSB_GENERAL_PURPOSE1 0x10 /**< General purpose 1 */
  228. #define MIDI_CTL_MSB_GENERAL_PURPOSE2 0x11 /**< General purpose 2 */
  229. #define MIDI_CTL_MSB_GENERAL_PURPOSE3 0x12 /**< General purpose 3 */
  230. #define MIDI_CTL_MSB_GENERAL_PURPOSE4 0x13 /**< General purpose 4 */
  231. #define MIDI_CTL_LSB_BANK 0x20 /**< Bank selection */
  232. #define MIDI_CTL_LSB_MODWHEEL 0x21 /**< Modulation */
  233. #define MIDI_CTL_LSB_BREATH 0x22 /**< Breath */
  234. #define MIDI_CTL_LSB_FOOT 0x24 /**< Foot */
  235. #define MIDI_CTL_LSB_PORTAMENTO_TIME 0x25 /**< Portamento time */
  236. #define MIDI_CTL_LSB_DATA_ENTRY 0x26 /**< Data entry */
  237. #define MIDI_CTL_LSB_MAIN_VOLUME 0x27 /**< Main volume */
  238. #define MIDI_CTL_LSB_BALANCE 0x28 /**< Balance */
  239. #define MIDI_CTL_LSB_PAN 0x2a /**< Panpot */
  240. #define MIDI_CTL_LSB_EXPRESSION 0x2b /**< Expression */
  241. #define MIDI_CTL_LSB_EFFECT1 0x2c /**< Effect1 */
  242. #define MIDI_CTL_LSB_EFFECT2 0x2d /**< Effect2 */
  243. #define MIDI_CTL_LSB_GENERAL_PURPOSE1 0x30 /**< General purpose 1 */
  244. #define MIDI_CTL_LSB_GENERAL_PURPOSE2 0x31 /**< General purpose 2 */
  245. #define MIDI_CTL_LSB_GENERAL_PURPOSE3 0x32 /**< General purpose 3 */
  246. #define MIDI_CTL_LSB_GENERAL_PURPOSE4 0x33 /**< General purpose 4 */
  247. #define MIDI_CTL_SUSTAIN 0x40 /**< Sustain pedal */
  248. #define MIDI_CTL_PORTAMENTO 0x41 /**< Portamento */
  249. #define MIDI_CTL_SOSTENUTO 0x42 /**< Sostenuto */
  250. #define MIDI_CTL_SUSTENUTO 0x42 /**< Sostenuto (a typo in the older version) */
  251. #define MIDI_CTL_SOFT_PEDAL 0x43 /**< Soft pedal */
  252. #define MIDI_CTL_LEGATO_FOOTSWITCH 0x44 /**< Legato foot switch */
  253. #define MIDI_CTL_HOLD2 0x45 /**< Hold2 */
  254. #define MIDI_CTL_SC1_SOUND_VARIATION 0x46 /**< SC1 Sound Variation */
  255. #define MIDI_CTL_SC2_TIMBRE 0x47 /**< SC2 Timbre */
  256. #define MIDI_CTL_SC3_RELEASE_TIME 0x48 /**< SC3 Release Time */
  257. #define MIDI_CTL_SC4_ATTACK_TIME 0x49 /**< SC4 Attack Time */
  258. #define MIDI_CTL_SC5_BRIGHTNESS 0x4a /**< SC5 Brightness */
  259. #define MIDI_CTL_SC6 0x4b /**< SC6 */
  260. #define MIDI_CTL_SC7 0x4c /**< SC7 */
  261. #define MIDI_CTL_SC8 0x4d /**< SC8 */
  262. #define MIDI_CTL_SC9 0x4e /**< SC9 */
  263. #define MIDI_CTL_SC10 0x4f /**< SC10 */
  264. #define MIDI_CTL_GENERAL_PURPOSE5 0x50 /**< General purpose 5 */
  265. #define MIDI_CTL_GENERAL_PURPOSE6 0x51 /**< General purpose 6 */
  266. #define MIDI_CTL_GENERAL_PURPOSE7 0x52 /**< General purpose 7 */
  267. #define MIDI_CTL_GENERAL_PURPOSE8 0x53 /**< General purpose 8 */
  268. #define MIDI_CTL_PORTAMENTO_CONTROL 0x54 /**< Portamento control */
  269. #define MIDI_CTL_E1_REVERB_DEPTH 0x5b /**< E1 Reverb Depth */
  270. #define MIDI_CTL_E2_TREMOLO_DEPTH 0x5c /**< E2 Tremolo Depth */
  271. #define MIDI_CTL_E3_CHORUS_DEPTH 0x5d /**< E3 Chorus Depth */
  272. #define MIDI_CTL_E4_DETUNE_DEPTH 0x5e /**< E4 Detune Depth */
  273. #define MIDI_CTL_E5_PHASER_DEPTH 0x5f /**< E5 Phaser Depth */
  274. #define MIDI_CTL_DATA_INCREMENT 0x60 /**< Data Increment */
  275. #define MIDI_CTL_DATA_DECREMENT 0x61 /**< Data Decrement */
  276. #define MIDI_CTL_NONREG_PARM_NUM_LSB 0x62 /**< Non-registered parameter number */
  277. #define MIDI_CTL_NONREG_PARM_NUM_MSB 0x63 /**< Non-registered parameter number */
  278. #define MIDI_CTL_REGIST_PARM_NUM_LSB 0x64 /**< Registered parameter number */
  279. #define MIDI_CTL_REGIST_PARM_NUM_MSB 0x65 /**< Registered parameter number */
  280. #define MIDI_CTL_ALL_SOUNDS_OFF 0x78 /**< All sounds off */
  281. #define MIDI_CTL_RESET_CONTROLLERS 0x79 /**< Reset Controllers */
  282. #define MIDI_CTL_LOCAL_CONTROL_SWITCH 0x7a /**< Local control switch */
  283. #define MIDI_CTL_ALL_NOTES_OFF 0x7b /**< All notes off */
  284. #define MIDI_CTL_OMNI_OFF 0x7c /**< Omni off */
  285. #define MIDI_CTL_OMNI_ON 0x7d /**< Omni on */
  286. #define MIDI_CTL_MONO1 0x7e /**< Mono1 */
  287. #define MIDI_CTL_MONO2 0x7f /**< Mono2 */
  288. /** \} */
  289. /** \} */
  290. #ifdef __cplusplus
  291. }
  292. #endif
  293. #endif /* __ALSA_ASOUNDEF_H */