summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-10-23 21:33:43 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-10-23 21:33:43 +0000
commit326c3fe40a5a0b02d8b797808f381b14ef4f8bad (patch)
tree6ad3c560418b0d5f8c47f859d364438932859bcf /src
parentfd51e7cbd9fe223fff0161ba2859c9135d51e0a9 (diff)
downloadxine-lib-326c3fe40a5a0b02d8b797808f381b14ef4f8bad.tar.gz
xine-lib-326c3fe40a5a0b02d8b797808f381b14ef4f8bad.tar.bz2
Add a debug option for SPU.
CVS patchset: 870 CVS date: 2001/10/23 21:33:43
Diffstat (limited to 'src')
-rw-r--r--src/xine-utils/monitor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-utils/monitor.h b/src/xine-utils/monitor.h
index 6f899aaf4..fa1e3b359 100644
--- a/src/xine-utils/monitor.h
+++ b/src/xine-utils/monitor.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: monitor.h,v 1.1 2001/10/22 00:52:10 guenter Exp $
+ * $Id: monitor.h,v 1.2 2001/10/23 21:33:43 jcdutton Exp $
*
* debug print and profiling functions
*
@@ -46,6 +46,7 @@ extern uint32_t xine_debug;
#define AC3 (xine_debug & 0x8000>>10) // 32
#define LOOP (xine_debug & 0x8000>>11) // 16
#define GUI (xine_debug & 0x8000>>12) // 8
+#define SPU (xine_debug & 0x8000>>13) // 4
#ifdef __GNUC__
#define perr(FMT,ARGS...) {fprintf(stderr, FMT, ##ARGS);fflush(stderr);}