# HG changeset patch # User nenolod # Date 1134077371 28800 # Node ID 1368faba73c922ef011b60443ff9ad79368d65fc # Parent 38ee4e7f91e618a7b5753fe23d842f1886432ee0 [svn] We shouldn't have to close the output plugin from here. I don't know why we are... diff -r 38ee4e7f91e6 -r 1368faba73c9 Plugins/Output/crossfade/crossfade.c --- a/Plugins/Output/crossfade/crossfade.c Thu Dec 08 11:47:13 2005 -0800 +++ b/Plugins/Output/crossfade/crossfade.c Thu Dec 08 13:29:31 2005 -0800 @@ -541,6 +541,7 @@ DEBUG(("[crossfade] fini: cleanup: waiting for buffer thread... done\n")); /* HACK: 0.3.5: close output plugin from THIS thread */ +#if 0 if(output_opened) { DEBUG(("[crossfade] fini: cleanup: closing audio...\n")); if(the_op->close_audio) the_op->close_audio(); @@ -548,6 +549,7 @@ g_free(buffer->data); output_opened = FALSE; } +#endif DEBUG(("[crossfade] fini: cleanup: done\n")); g_static_mutex_unlock (&buffer_mutex);