summaryrefslogtreecommitdiffstats
path: root/src/modules/module-suspend-on-idle.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-02-22 03:22:28 +0100
committerLennart Poettering <lennart@poettering.net>2010-02-22 04:57:15 +0100
commit0555c2ec7c33499f4d2816b181db8517cfd42e34 (patch)
tree0d36ef9345cff66929da7f5f860387f69c236478 /src/modules/module-suspend-on-idle.c
parent250aeceb4d06ce326015d29b688d94e8f71a0cab (diff)
suspend-on-idle: resume audio device even for initially corked streams
We need to resume audio devices even for streams that are created in corked stat, so that the latency ranges of the audio device are known during the initial latency negotiation. If we don't the latency negotiation will be based on placeholder data and changed later on which clients do not expect. This should fix issues with Skype. https://bugzilla.redhat.com/show_bug.cgi?id=554929
Diffstat (limited to 'src/modules/module-suspend-on-idle.c')
-rw-r--r--src/modules/module-suspend-on-idle.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/modules/module-suspend-on-idle.c b/src/modules/module-suspend-on-idle.c
index 7adaa0b1..cfb78792 100644
--- a/src/modules/module-suspend-on-idle.c
+++ b/src/modules/module-suspend-on-idle.c
@@ -145,8 +145,9 @@ static pa_hook_result_t sink_input_fixate_hook_cb(pa_core *c, pa_sink_input_new_
pa_assert(data);
pa_assert(u);
- if (data->flags & PA_SINK_INPUT_START_CORKED)
- return PA_HOOK_OK;
+ /* We need to resume the audio device here even for
+ * PA_SINK_INPUT_START_CORKED, since we need the device parameters
+ * to be fully available while the stream is set up. */
if ((d = pa_hashmap_get(u->device_infos, data->sink)))
resume(d);
@@ -161,9 +162,6 @@ static pa_hook_result_t source_output_fixate_hook_cb(pa_core *c, pa_source_outpu
pa_assert(data);
pa_assert(u);
- if (data->flags & PA_SOURCE_OUTPUT_START_CORKED)
- return PA_HOOK_OK;
-
if (data->source->monitor_of)
d = pa_hashmap_get(u->device_infos, data->source->monitor_of);
else