output_thread: removed redundant filter_close() call

Don't call filter_close() right after ao_close().
This commit is contained in:
Max Kellermann 2009-10-29 15:58:21 +01:00
parent 82af161210
commit cf8d278b78
1 changed files with 0 additions and 4 deletions

View File

@ -385,12 +385,8 @@ static gpointer audio_output_task(gpointer arg)
assert(ao->open);
assert(ao->pipe != NULL);
ao->pipe = NULL;
ao->chunk = NULL;
ao_plugin_cancel(ao->plugin, ao->data);
ao_close(ao);
filter_close(ao->filter);
ao_command_finished(ao);
break;