comparison src/xmms-sid.h @ 392:b09d74eb71e6

Working on getting STIL and SLDB using completely dynamically allocated structures. Indentation cleanups, etc.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 31 May 2006 10:02:00 +0000
parents b20300813b42
children 7c4216c7aa47
comparison
equal deleted inserted replaced
391:3cc7455360ad 392:b09d74eb71e6
93 #define XS_SIDPLAY1_FT (0.05f) 93 #define XS_SIDPLAY1_FT (0.05f)
94 94
95 95
96 #define XS_BIN_BAILOUT (32) /* Binary search bailout treshold */ 96 #define XS_BIN_BAILOUT (32) /* Binary search bailout treshold */
97 97
98 #define XS_STIL_MAXENTRY (128) /* Max number of sub-songs in STIL/SLDB node */
99
100 98
101 #define XS_CONFIG_IDENT "XMMS-SID" /* Configuration file identifier */ 99 #define XS_CONFIG_IDENT "XMMS-SID" /* Configuration file identifier */
102 #define XS_CONFIG_FILE "/.xmms/xmms-sid" /* Use this configfile if autocyrpe fails */ 100 #define XS_CONFIG_FILE "/.xmms/xmms-sid" /* Use this configfile if autocyrpe fails */
103 101
104 #define XS_MIN_OVERSAMPLE (2) /* Minimum oversampling factor */ 102 #define XS_MIN_OVERSAMPLE (2) /* Minimum oversampling factor */
132 */ 130 */
133 typedef struct { 131 typedef struct {
134 gint tuneSpeed; 132 gint tuneSpeed;
135 gint tuneLength; 133 gint tuneLength;
136 gchar *tuneTitle; 134 gchar *tuneTitle;
135 gboolean tunePlayed;
137 } t_xs_subtuneinfo; 136 } t_xs_subtuneinfo;
138 137
139 138
140 typedef struct { 139 typedef struct {
141 gchar *sidFilename, 140 gchar *sidFilename,