diff src/crossfade/crossfade.c @ 3066:c0ae2a5a15e8

Remove monitor GUI.
author William Pitcock <nenolod@atheme.org>
date Fri, 24 Apr 2009 06:57:12 -0500
parents a0ba6102131d
children 8f56795e348d
line wrap: on
line diff
--- a/src/crossfade/crossfade.c	Fri Apr 24 06:38:48 2009 -0500
+++ b/src/crossfade/crossfade.c	Fri Apr 24 06:57:12 2009 -0500
@@ -32,7 +32,6 @@
 #include "convert.h"
 
 #include "configure.h"
-#include "monitor.h"
 
 #include "interface-2.0.h"
 #include "support-2.0.h"
@@ -409,9 +408,6 @@
 	}
 	SCHED_YIELD;
 
-	/* start updating monitor */
-	xfade_start_monitor();
-
 	/* done */
 	output_opened = TRUE;
 	return 0;
@@ -434,9 +430,6 @@
 	/* check for realtime priority, it needs some special attention */
 	realtime = xfplayer_check_realtime_priority();
 
-	/* show monitor win if enabled in config */
-	xfade_check_monitor_win();
-
 	/* init contexts */
 	convert_init(&convert_context);
 #ifdef HAVE_LIBFFTW
@@ -1851,8 +1844,6 @@
 	/* cleanup: close output */
 	if (output_opened)
 	{
-		xfade_stop_monitor();
-
 		DEBUG(("[crossfade] buffer_thread_f: closing output...\n"));
 
 		if (the_op->close_audio)