ultrasound.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ULTRASOUND_H_
  2. #define _ULTRASOUND_H_
  3. /*
  4.  * ultrasound.h - Macros for programming the Gravis Ultrasound
  5.  * These macros are extremely device dependent
  6.  * and not portable.
  7.  */
  8. /*
  9.  * Copyright (C) by Hannu Savolainen 1993-1997
  10.  *
  11.  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  12.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  13.  * for more info.
  14.  */
  15. /*
  16.  * Private events for Gravis Ultrasound (GUS)
  17.  *
  18.  * Format:
  19.  * byte 0  - SEQ_PRIVATE (0xfe)
  20.  * byte 1  - Synthesizer device number (0-N)
  21.  * byte 2  - Command (see below)
  22.  * byte 3  - Voice number (0-31)
  23.  * bytes 4 and 5 - parameter P1 (unsigned short)
  24.  * bytes 6 and 7 - parameter P2 (unsigned short)
  25.  *
  26.  * Commands:
  27.  * Each command affects one voice defined in byte 3.
  28.  * Unused parameters (P1 and/or P2 *MUST* be initialized to zero).
  29.  * _GUS_NUMVOICES - Sets max. number of concurrent voices (P1=14-31, default 16)
  30.  * _GUS_VOICESAMPLE- ************ OBSOLETE *************
  31.  * _GUS_VOICEON - Starts voice (P1=voice mode)
  32.  * _GUS_VOICEOFF - Stops voice (no parameters)
  33.  * _GUS_VOICEFADE - Stops the voice smoothly.
  34.  * _GUS_VOICEMODE - Alters the voice mode, don't start or stop voice (P1=voice mode)
  35.  * _GUS_VOICEBALA - Sets voice balence (P1, 0=left, 7=middle and 15=right, default 7)
  36.  * _GUS_VOICEFREQ - Sets voice (sample) playback frequency (P1=Hz)
  37.  * _GUS_VOICEVOL - Sets voice volume (P1=volume, 0xfff=max, 0xeff=half, 0x000=off)
  38.  * _GUS_VOICEVOL2 - Sets voice volume (P1=volume, 0xfff=max, 0xeff=half, 0x000=off)
  39.  *   (Like GUS_VOICEVOL but doesn't change the hw
  40.  *   volume. It just updates volume in the voice table).
  41.  *
  42.  * _GUS_RAMPRANGE - Sets limits for volume ramping (P1=low volume, P2=high volume)
  43.  * _GUS_RAMPRATE - Sets the speed for volume ramping (P1=scale, P2=rate)
  44.  * _GUS_RAMPMODE - Sets the volume ramping mode (P1=ramping mode)
  45.  * _GUS_RAMPON - Starts volume ramping (no parameters)
  46.  * _GUS_RAMPOFF - Stops volume ramping (no parameters)
  47.  * _GUS_VOLUME_SCALE - Changes the volume calculation constants
  48.  *   for all voices.
  49.  */
  50. #define _GUS_NUMVOICES 0x00
  51. #define _GUS_VOICESAMPLE 0x01 /* OBSOLETE */
  52. #define _GUS_VOICEON 0x02
  53. #define _GUS_VOICEOFF 0x03
  54. #define _GUS_VOICEMODE 0x04
  55. #define _GUS_VOICEBALA 0x05
  56. #define _GUS_VOICEFREQ 0x06
  57. #define _GUS_VOICEVOL 0x07
  58. #define _GUS_RAMPRANGE 0x08
  59. #define _GUS_RAMPRATE 0x09
  60. #define _GUS_RAMPMODE 0x0a
  61. #define _GUS_RAMPON 0x0b
  62. #define _GUS_RAMPOFF 0x0c
  63. #define _GUS_VOICEFADE 0x0d
  64. #define _GUS_VOLUME_SCALE 0x0e
  65. #define _GUS_VOICEVOL2 0x0f
  66. #define _GUS_VOICE_POS 0x10
  67. /*
  68.  * GUS API macros
  69.  */
  70. #define _GUS_CMD(chn, voice, cmd, p1, p2) 
  71. {_SEQ_NEEDBUF(8); _seqbuf[_seqbufptr] = SEQ_PRIVATE;
  72. _seqbuf[_seqbufptr+1] = (chn); _seqbuf[_seqbufptr+2] = cmd;
  73. _seqbuf[_seqbufptr+3] = voice;
  74. *(unsigned short*)&_seqbuf[_seqbufptr+4] = p1;
  75. *(unsigned short*)&_seqbuf[_seqbufptr+6] = p2;
  76. _SEQ_ADVBUF(8);}
  77. #define GUS_NUMVOICES(chn, p1) _GUS_CMD(chn, 0, _GUS_NUMVOICES, (p1), 0)
  78. #define GUS_VOICESAMPLE(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICESAMPLE, (p1), 0) /* OBSOLETE */
  79. #define GUS_VOICEON(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEON, (p1), 0)
  80. #define GUS_VOICEOFF(chn, voice) _GUS_CMD(chn, voice, _GUS_VOICEOFF, 0, 0)
  81. #define GUS_VOICEFADE(chn, voice) _GUS_CMD(chn, voice, _GUS_VOICEFADE, 0, 0)
  82. #define GUS_VOICEMODE(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEMODE, (p1), 0)
  83. #define GUS_VOICEBALA(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEBALA, (p1), 0)
  84. #define GUS_VOICEFREQ(chn, voice, p) _GUS_CMD(chn, voice, _GUS_VOICEFREQ, 
  85. (p) & 0xffff, ((p) >> 16) & 0xffff)
  86. #define GUS_VOICEVOL(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEVOL, (p1), 0)
  87. #define GUS_VOICEVOL2(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_VOICEVOL2, (p1), 0)
  88. #define GUS_RAMPRANGE(chn, voice, low, high) _GUS_CMD(chn, voice, _GUS_RAMPRANGE, (low), (high))
  89. #define GUS_RAMPRATE(chn, voice, p1, p2) _GUS_CMD(chn, voice, _GUS_RAMPRATE, (p1), (p2))
  90. #define GUS_RAMPMODE(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_RAMPMODE, (p1), 0)
  91. #define GUS_RAMPON(chn, voice, p1) _GUS_CMD(chn, voice, _GUS_RAMPON, (p1), 0)
  92. #define GUS_RAMPOFF(chn, voice) _GUS_CMD(chn, voice, _GUS_RAMPOFF, 0, 0)
  93. #define GUS_VOLUME_SCALE(chn, voice, p1, p2) _GUS_CMD(chn, voice, _GUS_VOLUME_SCALE, (p1), (p2))
  94. #define GUS_VOICE_POS(chn, voice, p) _GUS_CMD(chn, voice, _GUS_VOICE_POS, 
  95. (p) & 0xffff, ((p) >> 16) & 0xffff)
  96. #endif