comparison audacious/pluginenum.c @ 906:704c0b2e5f6b trunk

[svn] - this should be it for now
author nhjm449
date Thu, 30 Mar 2006 21:16:35 -0800
parents 0bb30ec2bce9
children 3b990c26fc46
comparison
equal deleted inserted replaced
905:e5727eb096a6 906:704c0b2e5f6b
355 VisPlugin *vp; 355 VisPlugin *vp;
356 GList *node; 356 GList *node;
357 357
358 g_message("Shutting down plugin system"); 358 g_message("Shutting down plugin system");
359 359
360 if (bmp_playback_get_playing()) 360 if (bmp_playback_get_playing()) {
361 ip_data.stop = TRUE;
361 bmp_playback_stop(); 362 bmp_playback_stop();
363 ip_data.stop = FALSE;
364 }
362 365
363 for (node = get_input_list(); node; node = g_list_next(node)) { 366 for (node = get_input_list(); node; node = g_list_next(node)) {
364 ip = INPUT_PLUGIN(node->data); 367 ip = INPUT_PLUGIN(node->data);
365 if (ip && ip->cleanup) { 368 if (ip && ip->cleanup) {
366 ip->cleanup(); 369 ip->cleanup();