annotate src/xmms-sid.h @ 970:d90bca05521e

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 21 Nov 2012 00:16:03 +0200
parents be2a8436461a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
3
279b1e12df2b Updated to version 0.8-devel
Matti Hamalainen <ccr@tnsp.org>
parents: 1
diff changeset
2 XMMS-SID - SIDPlay input plugin for X MultiMedia System (XMMS)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 Main header file
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
324
dd201740a720 Changed copyright text.
Matti Hamalainen <ccr@tnsp.org>
parents: 311
diff changeset
6 Programmed and designed by Matti 'ccr' Hamalainen <ccr@tnsp.org>
723
9321ffa2ea7e Update copyright years.
Matti Hamalainen <ccr@tnsp.org>
parents: 665
diff changeset
7 (C) Copyright 1999-2009 Tecnic Software productions (TNSP)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 This program is free software; you can redistribute it and/or modify
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 it under the terms of the GNU General Public License as published by
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 the Free Software Foundation; either version 2 of the License, or
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 (at your option) any later version.
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 This program is distributed in the hope that it will be useful,
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 GNU General Public License for more details.
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
412
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
19 You should have received a copy of the GNU General Public License along
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
20 with this program; if not, write to the Free Software Foundation, Inc.,
7f694e5a1493 Updated GNU GPL (new FSF address) and some cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 402
diff changeset
21 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
22 */
526
fa95d942f226 Header cleanup; Moved some types from xmms-sid.h to xs_player.h; Renamed few functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
23 #ifndef XMMS_SID_H
fa95d942f226 Header cleanup; Moved some types from xmms-sid.h to xs_player.h; Renamed few functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
24 #define XMMS_SID_H
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25
465
ba98fdac6307 Moved some things to xs_support.h; t_xs_subtuneinfo.tuneSpeed is now the
Matti Hamalainen <ccr@tnsp.org>
parents: 459
diff changeset
26 #include "xs_support.h"
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
28 #ifdef __cplusplus
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
29 extern "C" {
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
30 #endif
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
31
300
a05bb36f6873 DEBUG_NP
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
32 /* Define to ISO C99 macro for debugging instead of varargs function.
365
5a92a2aee74c Better comments and .. you guessed it: more indentation fixes. :)
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
33 * This provides more useful information, but is incompatible with
5a92a2aee74c Better comments and .. you guessed it: more indentation fixes. :)
Matti Hamalainen <ccr@tnsp.org>
parents: 355
diff changeset
34 * older standards. If #undef'd, a varargs function is used instead.
300
a05bb36f6873 DEBUG_NP
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
35 */
308
ae5795ba5c77 Remove "only when song-length unknown" option from minimum playtime, it
Matti Hamalainen <ccr@tnsp.org>
parents: 300
diff changeset
36 #define DEBUG_NP
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
37
272
4af5e6c1d968 Formatting cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 269
diff changeset
38 /* Define to enable non-portable thread and mutex debugging code.
300
a05bb36f6873 DEBUG_NP
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
39 * You need to #define DEBUG also to make this useful.
a05bb36f6873 DEBUG_NP
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
40 * (Works probably with GNU/Linux pthreads implementation only)
272
4af5e6c1d968 Formatting cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 269
diff changeset
41 */
241
291715a519e2 Compile-time setting to enable/disable use of dynamically allocated buffers.
Matti Hamalainen <ccr@tnsp.org>
parents: 235
diff changeset
42 #undef XS_MUTEX_DEBUG
72
e3b205a6bc7e Lots re-arranging and new code for upcoming modularization.
Matti Hamalainen <ccr@tnsp.org>
parents: 65
diff changeset
43
241
291715a519e2 Compile-time setting to enable/disable use of dynamically allocated buffers.
Matti Hamalainen <ccr@tnsp.org>
parents: 235
diff changeset
44 /* Size for some small buffers (always static variables) */
777
15f0c8e11338 Increase line buffer size in songlength database reader. Fixes problems with
Matti Hamalainen <ccr@tnsp.org>
parents: 752
diff changeset
45 #define XS_BUF_SIZE (512)
15f0c8e11338 Increase line buffer size in songlength database reader. Fixes problems with
Matti Hamalainen <ccr@tnsp.org>
parents: 752
diff changeset
46
15f0c8e11338 Increase line buffer size in songlength database reader. Fixes problems with
Matti Hamalainen <ccr@tnsp.org>
parents: 752
diff changeset
47 #define XS_BUF2_SIZE (4096)
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48
355
26079ab52fc3 Comment about XS_DYNAMIC_BUF changed
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
49 /* If defined, some dynamically allocated temp. buffers are used.
26079ab52fc3 Comment about XS_DYNAMIC_BUF changed
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
50 * Static (#undef) might give slight performance gain,
26079ab52fc3 Comment about XS_DYNAMIC_BUF changed
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
51 * but fails on systems with limited stack space. */
241
291715a519e2 Compile-time setting to enable/disable use of dynamically allocated buffers.
Matti Hamalainen <ccr@tnsp.org>
parents: 235
diff changeset
52 #define XS_BUF_DYNAMIC
291715a519e2 Compile-time setting to enable/disable use of dynamically allocated buffers.
Matti Hamalainen <ccr@tnsp.org>
parents: 235
diff changeset
53
546
70fe31fe2bf5 Reordering cleanup and added constant for SIDPlay2 max # of filter coeffs.
Matti Hamalainen <ccr@tnsp.org>
parents: 534
diff changeset
54 /* Configuration section identifier
70fe31fe2bf5 Reordering cleanup and added constant for SIDPlay2 max # of filter coeffs.
Matti Hamalainen <ccr@tnsp.org>
parents: 534
diff changeset
55 */
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
56 #define XS_PACKAGE_STRING PACKAGE_STRING
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
57 #define XS_CONFIG_IDENT "XMMS-SID"
546
70fe31fe2bf5 Reordering cleanup and added constant for SIDPlay2 max # of filter coeffs.
Matti Hamalainen <ccr@tnsp.org>
parents: 534
diff changeset
58
486
4c599be2d349 Default audio rendering frequency #define.
Matti Hamalainen <ccr@tnsp.org>
parents: 478
diff changeset
59 /* Default audio rendering frequency in Hz
4c599be2d349 Default audio rendering frequency #define.
Matti Hamalainen <ccr@tnsp.org>
parents: 478
diff changeset
60 */
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
61 #define XS_AUDIO_FREQ (44100)
486
4c599be2d349 Default audio rendering frequency #define.
Matti Hamalainen <ccr@tnsp.org>
parents: 478
diff changeset
62
242
1c743dcd6d84 Document XS_AUDIOBUF_SIZE
Matti Hamalainen <ccr@tnsp.org>
parents: 241
diff changeset
63 /* Size of audio buffer. If you are experiencing lots of audio
1c743dcd6d84 Document XS_AUDIOBUF_SIZE
Matti Hamalainen <ccr@tnsp.org>
parents: 241
diff changeset
64 * "underruns" or clicks/gaps in output, try increasing this value.
1c743dcd6d84 Document XS_AUDIOBUF_SIZE
Matti Hamalainen <ccr@tnsp.org>
parents: 241
diff changeset
65 * Do notice, however, that it also affects the update frequency of
1c743dcd6d84 Document XS_AUDIOBUF_SIZE
Matti Hamalainen <ccr@tnsp.org>
parents: 241
diff changeset
66 * XMMS's visualization plugins...
1c743dcd6d84 Document XS_AUDIOBUF_SIZE
Matti Hamalainen <ccr@tnsp.org>
parents: 241
diff changeset
67 */
824
abf20230e4c6 Increase audio buffer size.
Matti Hamalainen <ccr@tnsp.org>
parents: 822
diff changeset
68 #define XS_AUDIOBUF_SIZE (4*1024)
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
69
870
a2eb84ed5280 Clarify the comment concerning the SID buffer size define.
Matti Hamalainen <ccr@tnsp.org>
parents: 824
diff changeset
70 /* Size of data buffer used for SID-file loading and MD5 hash calculation.
241
291715a519e2 Compile-time setting to enable/disable use of dynamically allocated buffers.
Matti Hamalainen <ccr@tnsp.org>
parents: 235
diff changeset
71 * If this is too small, the computed hash will be incorrect.
870
a2eb84ed5280 Clarify the comment concerning the SID buffer size define.
Matti Hamalainen <ccr@tnsp.org>
parents: 824
diff changeset
72 * Largest SID files I've seen are ~70kB.
a2eb84ed5280 Clarify the comment concerning the SID buffer size define.
Matti Hamalainen <ccr@tnsp.org>
parents: 824
diff changeset
73 */
822
cbba4cf52ff9 Increase SID read buffer size.
Matti Hamalainen <ccr@tnsp.org>
parents: 810
diff changeset
74 #define XS_SIDBUF_SIZE (256*1024)
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
75
546
70fe31fe2bf5 Reordering cleanup and added constant for SIDPlay2 max # of filter coeffs.
Matti Hamalainen <ccr@tnsp.org>
parents: 534
diff changeset
76 /* libSIDPlay1/2 constants (copied from internal headers/source)
70fe31fe2bf5 Reordering cleanup and added constant for SIDPlay2 max # of filter coeffs.
Matti Hamalainen <ccr@tnsp.org>
parents: 534
diff changeset
77 * For some stupid reason these are not available in public
70fe31fe2bf5 Reordering cleanup and added constant for SIDPlay2 max # of filter coeffs.
Matti Hamalainen <ccr@tnsp.org>
parents: 534
diff changeset
78 * headers, so we have to duplicate them here...
70fe31fe2bf5 Reordering cleanup and added constant for SIDPlay2 max # of filter coeffs.
Matti Hamalainen <ccr@tnsp.org>
parents: 534
diff changeset
79 */
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
80 #define XS_SIDPLAY1_FS (400.0f)
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
81 #define XS_SIDPLAY1_FM (60.0f)
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
82 #define XS_SIDPLAY1_FT (0.05f)
376
b20300813b42 Moved some #defines from xs_config.c to xmms-sid.h; Changed default SID
Matti Hamalainen <ccr@tnsp.org>
parents: 369
diff changeset
83
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
84 #define XS_SIDPLAY2_NFPOINTS (0x800)
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
85 #define XS_SIDPLAY2_FMAX (24000)
62
0d1df20745dd Started to rewrite STIL-support
Matti Hamalainen <ccr@tnsp.org>
parents: 50
diff changeset
86
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
87
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
88 /* Macros for mutexes and threads. These exist to be able to
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
89 * easily change from pthreads to glib threads, etc, if necessary.
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
90 */
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
91 #define XS_THREAD_T pthread_t
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
92 #define XS_THREAD_EXIT(M) pthread_exit(M)
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
93 #define XS_THREAD_JOIN(M) pthread_join(M, NULL)
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
94 #define XS_MPP(M) M ## _mutex
640
91056492b156 Fix XS_MUTEX_DEBUG to work again.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
95 #ifdef XS_MUTEX_DEBUG
91056492b156 Fix XS_MUTEX_DEBUG to work again.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
96 # ifndef __USE_GNU
91056492b156 Fix XS_MUTEX_DEBUG to work again.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
97 # define __USE_GNU
91056492b156 Fix XS_MUTEX_DEBUG to work again.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
98 # endif
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
99 # define XS_MUTEX(M) pthread_mutex_t XS_MPP(M) = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP; gint M ## _qq
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
100 # define XS_MUTEX_H(M) extern pthread_mutex_t XS_MPP(M); extern gint M ## _qq
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
101 # define XS_MUTEX_LOCK(M) { M ## _qq = pthread_mutex_lock(&XS_MPP(M)); if (M ## _qq) XSDEBUG("XS_MUTEX_LOCK(" #M ") == %i\n", M ## _qq); }
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
102 # define XS_MUTEX_UNLOCK(M) { M ## _qq = pthread_mutex_unlock(&XS_MPP(M)); if (M ## _qq) XSDEBUG("XS_MUTEX_UNLOCK(" #M ") == %i\n", M ## _qq); }
241
291715a519e2 Compile-time setting to enable/disable use of dynamically allocated buffers.
Matti Hamalainen <ccr@tnsp.org>
parents: 235
diff changeset
103 #else
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
104 # define XS_MUTEX(M) pthread_mutex_t XS_MPP(M) = PTHREAD_MUTEX_INITIALIZER
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
105 # define XS_MUTEX_H(M) extern pthread_mutex_t XS_MPP(M)
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
106 # define XS_MUTEX_LOCK(M) pthread_mutex_lock(&XS_MPP(M))
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
107 # define XS_MUTEX_UNLOCK(M) pthread_mutex_unlock(&XS_MPP(M))
241
291715a519e2 Compile-time setting to enable/disable use of dynamically allocated buffers.
Matti Hamalainen <ccr@tnsp.org>
parents: 235
diff changeset
108 #endif
640
91056492b156 Fix XS_MUTEX_DEBUG to work again.
Matti Hamalainen <ccr@tnsp.org>
parents: 632
diff changeset
109 #include <pthread.h>
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
110
622
d7389ea52113 Move SLDB and STIL utility functions to xs_slsup.[ch] and amend some changes between XMMS-SID and Aud-SID via a macro mess.
Matti Hamalainen <ccr@tnsp.org>
parents: 619
diff changeset
111 /* Character set conversion helper macros
d7389ea52113 Move SLDB and STIL utility functions to xs_slsup.[ch] and amend some changes between XMMS-SID and Aud-SID via a macro mess.
Matti Hamalainen <ccr@tnsp.org>
parents: 619
diff changeset
112 */
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
113 #define XS_CS_FILENAME(M) g_strdup(M)
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
114 #define XS_CS_SID(M) g_strdup(M)
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
115 #define XS_CS_STIL(M) M
622
d7389ea52113 Move SLDB and STIL utility functions to xs_slsup.[ch] and amend some changes between XMMS-SID and Aud-SID via a macro mess.
Matti Hamalainen <ccr@tnsp.org>
parents: 619
diff changeset
116 #define XS_CS_FREE(M)
d7389ea52113 Move SLDB and STIL utility functions to xs_slsup.[ch] and amend some changes between XMMS-SID and Aud-SID via a macro mess.
Matti Hamalainen <ccr@tnsp.org>
parents: 619
diff changeset
117
72
e3b205a6bc7e Lots re-arranging and new code for upcoming modularization.
Matti Hamalainen <ccr@tnsp.org>
parents: 65
diff changeset
118
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
119 /* Plugin-wide typedefs
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
120 */
72
e3b205a6bc7e Lots re-arranging and new code for upcoming modularization.
Matti Hamalainen <ccr@tnsp.org>
parents: 65
diff changeset
121 typedef struct {
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
122 gint tuneSpeed,
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
123 tuneLength;
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
124 gboolean tunePlayed;
751
55eea3fa8868 Rename some structures.
Matti Hamalainen <ccr@tnsp.org>
parents: 748
diff changeset
125 } XSSubTuneInfo;
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 73
diff changeset
126
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 73
diff changeset
127
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 73
diff changeset
128 typedef struct {
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
129 gchar *sidFilename,
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
130 *sidName,
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
131 *sidComposer,
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
132 *sidCopyright,
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
133 *sidFormat;
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
134 gint loadAddr,
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
135 initAddr,
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
136 playAddr,
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
137 dataFileLen,
961
be2a8436461a Add display of second SID chip to titles, and also new custom format tokens
Matti Hamalainen <ccr@tnsp.org>
parents: 879
diff changeset
138 sidModel1,
be2a8436461a Add display of second SID chip to titles, and also new custom format tokens
Matti Hamalainen <ccr@tnsp.org>
parents: 879
diff changeset
139 sidModel2;
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
140 gint nsubTunes, startTune;
751
55eea3fa8868 Rename some structures.
Matti Hamalainen <ccr@tnsp.org>
parents: 748
diff changeset
141 XSSubTuneInfo *subTunes;
55eea3fa8868 Rename some structures.
Matti Hamalainen <ccr@tnsp.org>
parents: 748
diff changeset
142 } XSTuneInfo;
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
143
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
144
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
145 /* Global variables
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
146 */
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
147 extern InputPlugin xs_plugin_ip;
230
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
148
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
149
608f31f6c095 Raw cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 219
diff changeset
150 /* Plugin function prototypes
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
151 */
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
152 void xs_init(void);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
153 void xs_reinit(void);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
154 void xs_close(void);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
155 gint xs_is_our_file(gchar *);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
156 void xs_play_file(gchar *);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
157 void xs_stop(void);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
158 void xs_pause(short);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
159 void xs_seek(gint);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
160 gint xs_get_time(void);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
161 void xs_get_song_info(gchar *, gchar **, gint *);
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
162 void xs_about(void);
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
163
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
164
300
a05bb36f6873 DEBUG_NP
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
165 #ifndef DEBUG_NP
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
166 void XSDEBUG(const char *, ...);
300
a05bb36f6873 DEBUG_NP
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
167 #else
532
bc548249464a Audacious glue.
Matti Hamalainen <ccr@tnsp.org>
parents: 526
diff changeset
168 # ifdef DEBUG
bc548249464a Audacious glue.
Matti Hamalainen <ccr@tnsp.org>
parents: 526
diff changeset
169 # define XSDEBUG(...) { fprintf(stderr, "XS[%s:%s:%d]: ", __FILE__, __FUNCTION__, (int) __LINE__); fprintf(stderr, __VA_ARGS__); }
bc548249464a Audacious glue.
Matti Hamalainen <ccr@tnsp.org>
parents: 526
diff changeset
170 # else
bc548249464a Audacious glue.
Matti Hamalainen <ccr@tnsp.org>
parents: 526
diff changeset
171 # define XSDEBUG(...) /* stub */
bc548249464a Audacious glue.
Matti Hamalainen <ccr@tnsp.org>
parents: 526
diff changeset
172 # endif
300
a05bb36f6873 DEBUG_NP
Matti Hamalainen <ccr@tnsp.org>
parents: 298
diff changeset
173 #endif
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
174
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
175
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
176 /* And even some Gtk+ macro crap here, yay.
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
177 */
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
178 #define XS_DEF_WINDOW_DELETE(ME, MV) \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
179 gboolean xs_ ## ME ## _delete(GtkWidget *w, GdkEvent *e, gpointer d) { \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
180 (void) w; (void) e; (void) d; \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
181 if (xs_ ## MV ) { \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
182 gtk_widget_destroy(xs_ ## MV ); \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
183 xs_ ## MV = NULL; \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
184 } \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
185 return FALSE; \
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
186 }
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
187
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
188 #define XS_DEF_WINDOW_CLOSE(ME, MV) \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
189 void xs_ ## ME (GtkButton *b, gpointer d) { \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
190 (void) b; (void) d; \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
191 gtk_widget_destroy(xs_ ## MV ); \
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
192 xs_ ## MV = NULL; \
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
193 }
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
194
752
64e7e427a436 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 751
diff changeset
195 #define XS_SIGNAL_CONNECT(SOBJ, SNAME, SFUNC, SDATA) \
660
b0743dc9165d Change tabs to 4 spaces, everywhere.
Matti Hamalainen <ccr@tnsp.org>
parents: 657
diff changeset
196 gtk_signal_connect(GTK_OBJECT(SOBJ), SNAME, GTK_SIGNAL_FUNC(SFUNC), SDATA)
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 610
diff changeset
197
665
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
198 #define XS_WINDOW_PRESENT(SWIN) gdk_window_raise(SWIN ->window)
94186706beed Use macro wrapping for Gtk+ v1 vs v2 differences, yet again.
Matti Hamalainen <ccr@tnsp.org>
parents: 660
diff changeset
199
1
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
200 #ifdef __cplusplus
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
201 }
183e7cbc1036 Initial revision
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
202 #endif
526
fa95d942f226 Header cleanup; Moved some types from xmms-sid.h to xs_player.h; Renamed few functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
203 #endif /* XMMS_SID_H */