diff src/cue/cuesheet.c @ 1984:489e32a8e106

change some places to use set_params() instead of set_info() directly
author William Pitcock <nenolod@atheme.org>
date Sun, 07 Oct 2007 14:19:19 -0500
parents fa9f85cebade
children 9d0f5be50219
line wrap: on
line diff
--- a/src/cue/cuesheet.c	Sun Oct 07 01:13:02 2007 -0500
+++ b/src/cue/cuesheet.c	Sun Oct 07 14:19:19 2007 -0500
@@ -487,6 +487,13 @@
 		real_ip->pb_ready_val = data->pb_ready_val;
 		real_ip->set_pb_ready = data->set_pb_ready;
 
+		real_ip->pb_change_mutex = data->pb_change_mutex;
+		real_ip->pb_change_cond = data->pb_change_cond;
+		real_ip->set_pb_change = data->set_pb_change;
+
+		real_ip->set_params = data->set_params;
+		real_ip->set_title = data->set_title;
+
 		real_play_thread = g_thread_create((GThreadFunc)(real_ip->plugin->play_file), (gpointer)real_ip, TRUE, NULL);
 		g_usleep(50000); // wait for 50msec while real input plugin is initializing.