config.h
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:8k
源码类别:

多媒体编程

开发平台:

DOS

  1. /*
  2.     TiMidity -- Experimental MIDI to WAVE converter
  3.     Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2 of the License, or
  7.     (at your option) any later version.
  8.     This program is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.     GNU General Public License for more details.
  12.     You should have received a copy of the GNU General Public License
  13.     along with this program; if not, write to the Free Software
  14.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. /* This is for use with the SDL library */
  17. #define SDL
  18. #include "SDL_config.h"
  19. #include "SDL_endian.h"
  20. #define TIMIDITY_ERROR_SIZE 1024
  21. /* When a patch file can't be opened, one of these extensions is
  22.    appended to the filename and the open is tried again.
  23.  */
  24. #define PATCH_EXT_LIST { ".pat", 0 }
  25. /* Acoustic Grand Piano seems to be the usual default instrument. */
  26. #define DEFAULT_PROGRAM 0
  27. /* 9 here is MIDI channel 10, which is the standard percussion channel.
  28.    Some files (notably C:WINDOWSCANYON.MID) think that 16 is one too. 
  29.    On the other hand, some files know that 16 is not a drum channel and
  30.    try to play music on it. This is now a runtime option, so this isn't
  31.    a critical choice anymore. */
  32. #define DEFAULT_DRUMCHANNELS ((1<<9) | (1<<15))
  33. /* A somewhat arbitrary frequency range. The low end of this will
  34.    sound terrible as no lowpass filtering is performed on most
  35.    instruments before resampling. */
  36. #define MIN_OUTPUT_RATE  4000
  37. #define MAX_OUTPUT_RATE  65000
  38. /* In percent. */
  39. /* #define DEFAULT_AMPLIFICATION  70 */
  40. /* #define DEFAULT_AMPLIFICATION  50 */
  41. #define DEFAULT_AMPLIFICATION  30
  42. /* Default sampling rate, default polyphony, and maximum polyphony.
  43.    All but the last can be overridden from the command line. */
  44. #define DEFAULT_RATE 32000
  45. /* #define DEFAULT_VOICES 32 */
  46. /* #define MAX_VOICES 48 */
  47. #define DEFAULT_VOICES 256
  48. #define MAX_VOICES 256
  49. #define MAXCHAN 16
  50. /* #define MAXCHAN 64 */
  51. #define MAXNOTE 128
  52. /* 1000 here will give a control ratio of 22:1 with 22 kHz output.
  53.    Higher CONTROLS_PER_SECOND values allow more accurate rendering
  54.    of envelopes and tremolo. The cost is CPU time. */
  55. #define CONTROLS_PER_SECOND 1000
  56. /* Strongly recommended. This option increases CPU usage by half, but
  57.    without it sound quality is very poor. */
  58. #define LINEAR_INTERPOLATION
  59. /* This is an experimental kludge that needs to be done right, but if
  60.    you've got an 8-bit sound card, or cheap multimedia speakers hooked
  61.    to your 16-bit output device, you should definitely give it a try.
  62.    Defining LOOKUP_HACK causes table lookups to be used in mixing
  63.    instead of multiplication. We convert the sample data to 8 bits at
  64.    load time and volumes to logarithmic 7-bit values before looking up
  65.    the product, which degrades sound quality noticeably.
  66.    Defining LOOKUP_HACK should save ~20% of CPU on an Intel machine.
  67.    LOOKUP_INTERPOLATION might give another ~5% */
  68. /* #define LOOKUP_HACK
  69.    #define LOOKUP_INTERPOLATION */
  70. /* Make envelopes twice as fast. Saves ~20% CPU time (notes decay
  71.    faster) and sounds more like a GUS. There is now a command line
  72.    option to toggle this as well. */
  73. /* #define FAST_DECAY */
  74. /* How many bits to use for the fractional part of sample positions.
  75.    This affects tonal accuracy. The entire position counter must fit
  76.    in 32 bits, so with FRACTION_BITS equal to 12, the maximum size of
  77.    a sample is 1048576 samples (2 megabytes in memory). The GUS gets
  78.    by with just 9 bits and a little help from its friends...
  79.    "The GUS does not SUCK!!!" -- a happy user :) */
  80. #define FRACTION_BITS 12
  81. #define MAX_SAMPLE_SIZE (1 << (32-FRACTION_BITS))
  82. typedef double FLOAT_T;
  83. /* For some reason the sample volume is always set to maximum in all
  84.    patch files. Define this for a crude adjustment that may help
  85.    equalize instrument volumes. */
  86. #define ADJUST_SAMPLE_VOLUMES
  87. /* The number of samples to use for ramping out a dying note. Affects
  88.    click removal. */
  89. #define MAX_DIE_TIME 20
  90. /* On some machines (especially PCs without math coprocessors),
  91.    looking up sine values in a table will be significantly faster than
  92.    computing them on the fly. Uncomment this to use lookups. */
  93. /* #define LOOKUP_SINE */
  94. /* Shawn McHorse's resampling optimizations. These may not in fact be
  95.    faster on your particular machine and compiler. You'll have to run
  96.    a benchmark to find out. */
  97. #define PRECALC_LOOPS
  98. /* If calling ldexp() is faster than a floating point multiplication
  99.    on your machine/compiler/libm, uncomment this. It doesn't make much
  100.    difference either way, but hey -- it was on the TODO list, so it
  101.    got done. */
  102. /* #define USE_LDEXP */
  103. /**************************************************************************/
  104. /* Anything below this shouldn't need to be changed unless you're porting
  105.    to a new machine with other than 32-bit, big-endian words. */
  106. /**************************************************************************/
  107. /* change FRACTION_BITS above, not these */
  108. #define INTEGER_BITS (32 - FRACTION_BITS)
  109. #define INTEGER_MASK (0xFFFFFFFF << FRACTION_BITS)
  110. #define FRACTION_MASK (~ INTEGER_MASK)
  111. /* This is enforced by some computations that must fit in an int */
  112. #define MAX_CONTROL_RATIO 255
  113. typedef unsigned int uint32;
  114. typedef int int32; 
  115. typedef unsigned short uint16;
  116. typedef short int16;
  117. typedef unsigned char uint8;
  118. typedef char int8;
  119. /* Instrument files are little-endian, MIDI files big-endian, so we
  120.    need to do some conversions. */
  121. #define XCHG_SHORT(x) ((((x)&0xFF)<<8) | (((x)>>8)&0xFF))
  122. # define XCHG_LONG(x) ((((x)&0xFF)<<24) | 
  123.       (((x)&0xFF00)<<8) | 
  124.       (((x)&0xFF0000)>>8) | 
  125.       (((x)>>24)&0xFF))
  126. #if SDL_BYTEORDER == SDL_LIL_ENDIAN
  127. #define LE_SHORT(x) x
  128. #define LE_LONG(x) x
  129. #define BE_SHORT(x) XCHG_SHORT(x)
  130. #define BE_LONG(x) XCHG_LONG(x)
  131. #else
  132. #define BE_SHORT(x) x
  133. #define BE_LONG(x) x
  134. #define LE_SHORT(x) XCHG_SHORT(x)
  135. #define LE_LONG(x) XCHG_LONG(x)
  136. #endif
  137. #define MAX_AMPLIFICATION 800
  138. /* You could specify a complete path, e.g. "/etc/timidity.cfg", and
  139.    then specify the library directory in the configuration file. */
  140. #define CONFIG_FILE "timidity.cfg"
  141. #define CONFIG_FILE_ETC "/etc/timidity.cfg"
  142. #if defined(__WIN32__) || defined(__OS2__)
  143. #define DEFAULT_PATH "C:\TIMIDITY"
  144. #else
  145. #define DEFAULT_PATH "/etc/timidity"
  146. #define DEFAULT_PATH1 "/usr/share/timidity"
  147. #define DEFAULT_PATH2 "/usr/local/lib/timidity"
  148. #endif
  149. /* These affect general volume */
  150. #define GUARD_BITS 3
  151. #define AMP_BITS (15-GUARD_BITS)
  152. #ifdef LOOKUP_HACK
  153.    typedef int8 sample_t;
  154.    typedef uint8 final_volume_t;
  155. #  define FINAL_VOLUME(v) (~_l2u[v])
  156. #  define MIXUP_SHIFT 5
  157. #  define MAX_AMP_VALUE 4095
  158. #else
  159.    typedef int16 sample_t;
  160.    typedef int32 final_volume_t;
  161. #  define FINAL_VOLUME(v) (v)
  162. #  define MAX_AMP_VALUE ((1<<(AMP_BITS+1))-1)
  163. #endif
  164. typedef int16 resample_t;
  165. #ifdef USE_LDEXP
  166. #  define FSCALE(a,b) ldexp((a),(b))
  167. #  define FSCALENEG(a,b) ldexp((a),-(b))
  168. #else
  169. #  define FSCALE(a,b) (float)((a) * (double)(1<<(b)))
  170. #  define FSCALENEG(a,b) (float)((a) * (1.0L / (double)(1<<(b))))
  171. #endif
  172. /* Vibrato and tremolo Choices of the Day */
  173. #define SWEEP_TUNING 38
  174. #define VIBRATO_AMPLITUDE_TUNING 1.0L
  175. #define VIBRATO_RATE_TUNING 38
  176. #define TREMOLO_AMPLITUDE_TUNING 1.0L
  177. #define TREMOLO_RATE_TUNING 38
  178. #define SWEEP_SHIFT 16
  179. #define RATE_SHIFT 5
  180. #define VIBRATO_SAMPLE_INCREMENTS 32
  181. #ifndef PI
  182.   #define PI 3.14159265358979323846
  183. #endif
  184. /* The path separator (D.M.) */
  185. #if defined(__WIN32__) || defined(__OS2__)
  186. #  define PATH_SEP '\'
  187. #  define PATH_STRING "\"
  188. #else
  189. #  define PATH_SEP '/'
  190. #  define PATH_STRING "/"
  191. #endif