1 /**
2  ** config.h
3  **
4  ** Please edit this file if you want to
5  ** modify the default behavior of UModPlayer.
6  **
7  ** In each definition, such as:
8  ** #define FOO_BAR 1234
9  **
10  ** you can edit the '1234' value.
11  **
12  ** If the value is a literal, please keep the
13  ** quotes.
14  **/
15 
16 /*
17  * UModPlayer version.
18  * Usually you don't want to edit this :-)
19  */
20 #define UMODPLAYER_VERSION "UModPlayer B5.1, September 2006"
21 
22 /*
23  * Default sampling rate.
24  * Please note that LibModPlug (at least as of 0.7)
25  * doesn't support higher values than 44100
26  */
27 #define DEFAULT_SAMPLERATE 44100
28 
29 /*
30  * 'Preamble' to be used before a notice/error/warning
31  * is displayed. By default we use ">>> ", but edit it
32  * if it annoys you.
33  */
34 #define PREAMBLE ">>> "
35 
36  /*
37   * Buffer size for audio.
38   * Smaller buffer sizes may increase the CPU usage.
39   * The default value, 8192, should work fine in most configurations.
40   *
41   * Note that the value must be divisible by 4.
42   */
43 #define BUFFER_SIZE 8192
44 
45 
46