changeset 563:ccf952b07c77 trunk

[svn] Fix sid for current API.
author iabervon
date Sun, 28 Jan 2007 22:15:52 -0800
parents 997496d252d4
children 6b959c9914a7
files ChangeLog src/sid/xmms-sid.c
diffstat 2 files changed, 15 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Jan 28 22:14:55 2007 -0800
+++ b/ChangeLog	Sun Jan 28 22:15:52 2007 -0800
@@ -1,3 +1,15 @@
+2007-01-29 06:14:55 +0000  Daniel Barkalow <barkalow@iabervon.org>
+  revision [1210]
+  Use InputPlayback standard flags in mpg123, drop set_time().
+  
+  trunk/src/mpg123/common.c |   18 +++++++-----
+  trunk/src/mpg123/layer1.c |    2 -
+  trunk/src/mpg123/layer3.c |    2 -
+  trunk/src/mpg123/mpg123.c |   65 +++++++++++++++++++---------------------------
+  trunk/src/mpg123/mpg123.h |   12 +++++---
+  5 files changed, 47 insertions(+), 52 deletions(-)
+
+
 2007-01-29 05:09:12 +0000  Daniel Barkalow <barkalow@iabervon.org>
   revision [1208]
   Convert plugins to use InputPlayback.output instead of InputPlugin.output
--- a/src/sid/xmms-sid.c	Sun Jan 28 22:14:55 2007 -0800
+++ b/src/sid/xmms-sid.c	Sun Jan 28 22:15:52 2007 -0800
@@ -138,7 +138,7 @@
 	g_static_mutex_lock(&xs_status_mutex);
 	if (xs_status.isPlaying) {
 		g_static_mutex_unlock(&xs_status_mutex);
-		xs_stop();
+		xs_stop(NULL);
 	} else {
 		g_static_mutex_unlock(&xs_status_mutex);
 	}
@@ -241,7 +241,7 @@
 	XSDEBUG("xs_close(): shutting down...\n");
 
 	/* Stop playing, free structures */
-	xs_stop();
+	xs_stop(NULL);
 
 	xs_tuneinfo_free(xs_status.tuneInfo);
 	xs_status.tuneInfo = NULL;
@@ -809,7 +809,7 @@
  * This function is called whenever position slider is clicked or
  * other method of seeking is used (keyboard, etc.)
  */
-void xs_seek(gint iTime)
+void xs_seek(InputPlayback *playback, gint iTime)
 {
 	/* Check status */
 	g_static_mutex_lock(&xs_status_mutex);