output_thread: removed redundant filter_close() call
Don't call filter_close() right after ao_close().
This commit is contained in:
parent
82af161210
commit
cf8d278b78
|
@ -385,12 +385,8 @@ static gpointer audio_output_task(gpointer arg)
|
||||||
assert(ao->open);
|
assert(ao->open);
|
||||||
assert(ao->pipe != NULL);
|
assert(ao->pipe != NULL);
|
||||||
|
|
||||||
ao->pipe = NULL;
|
|
||||||
ao->chunk = NULL;
|
|
||||||
|
|
||||||
ao_plugin_cancel(ao->plugin, ao->data);
|
ao_plugin_cancel(ao->plugin, ao->data);
|
||||||
ao_close(ao);
|
ao_close(ao);
|
||||||
filter_close(ao->filter);
|
|
||||||
ao_command_finished(ao);
|
ao_command_finished(ao);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue