Commit fd8aa54a authored by Max Kellermann's avatar Max Kellermann

output_init: initialize the "pause" flag

Fix stuttering due to uninitialized variable.
parent 48a80d0b
ver 0.15.3 (2009/??/??)
* output:
- fix stuttering due to uninitialized variable
ver 0.15.2 (2009/08/15)
......
......@@ -109,6 +109,7 @@ audio_output_init(struct audio_output *ao, const struct config_param *param,
ao->plugin = plugin;
ao->enabled = config_get_block_bool(param, "enabled", true);
ao->open = false;
ao->pause = false;
ao->fail_timer = NULL;
pcm_convert_init(&ao->convert_state);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment