output: join the output thread after sending the KILL command
Be sure that the output thread has quite before we start destructing the output object.
This commit is contained in:
parent
405c102c17
commit
bf058f978a
|
@ -134,8 +134,12 @@ void audio_output_close(struct audio_output *audioOutput)
|
|||
void audio_output_finish(struct audio_output *audioOutput)
|
||||
{
|
||||
audio_output_close(audioOutput);
|
||||
if (audioOutput->thread != NULL)
|
||||
|
||||
if (audioOutput->thread != NULL) {
|
||||
ao_command(audioOutput, AO_COMMAND_KILL);
|
||||
g_thread_join(audioOutput->thread);
|
||||
}
|
||||
|
||||
if (audioOutput->plugin->finish)
|
||||
audioOutput->plugin->finish(audioOutput->data);
|
||||
if (audioOutput->convBuffer)
|
||||
|
|
|
@ -175,6 +175,6 @@ void audio_output_thread_start(struct audio_output *ao)
|
|||
|
||||
assert(ao->command == AO_COMMAND_NONE);
|
||||
|
||||
if (!(ao->thread = g_thread_create(audio_output_task, ao, FALSE, &e)))
|
||||
if (!(ao->thread = g_thread_create(audio_output_task, ao, true, &e)))
|
||||
g_error("Failed to spawn output task: %s\n", e->message);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue