comparison 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
comparison
equal deleted inserted replaced
1983:47057148c992 1984:489e32a8e106
484 /* we have to copy set_pb_ready things too. */ 484 /* we have to copy set_pb_ready things too. */
485 real_ip->pb_ready_mutex = data->pb_ready_mutex; 485 real_ip->pb_ready_mutex = data->pb_ready_mutex;
486 real_ip->pb_ready_cond = data->pb_ready_cond; 486 real_ip->pb_ready_cond = data->pb_ready_cond;
487 real_ip->pb_ready_val = data->pb_ready_val; 487 real_ip->pb_ready_val = data->pb_ready_val;
488 real_ip->set_pb_ready = data->set_pb_ready; 488 real_ip->set_pb_ready = data->set_pb_ready;
489
490 real_ip->pb_change_mutex = data->pb_change_mutex;
491 real_ip->pb_change_cond = data->pb_change_cond;
492 real_ip->set_pb_change = data->set_pb_change;
493
494 real_ip->set_params = data->set_params;
495 real_ip->set_title = data->set_title;
489 496
490 real_play_thread = g_thread_create((GThreadFunc)(real_ip->plugin->play_file), (gpointer)real_ip, TRUE, NULL); 497 real_play_thread = g_thread_create((GThreadFunc)(real_ip->plugin->play_file), (gpointer)real_ip, TRUE, NULL);
491 g_usleep(50000); // wait for 50msec while real input plugin is initializing. 498 g_usleep(50000); // wait for 50msec while real input plugin is initializing.
492 499
493 if(real_ip->plugin->mseek) { 500 if(real_ip->plugin->mseek) {