summaryrefslogtreecommitdiffstats
path: root/src/modules/module-position-event-sounds.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-06-11 19:45:57 +0000
committerLennart Poettering <lennart@poettering.net>2008-06-11 19:45:57 +0000
commit92e4fb318e5f1e483911ed44743115bae1d0fd54 (patch)
tree1db9f7dbb0576e7801202f1e66db15ff1c607b1b /src/modules/module-position-event-sounds.c
parent1337afdee49e69f77f342ba694f53cccc5446453 (diff)
merge Colin Guthrie's module-always-sink module, and add priorization to the hook subsystem while doing so.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2516 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/modules/module-position-event-sounds.c')
-rw-r--r--src/modules/module-position-event-sounds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/module-position-event-sounds.c b/src/modules/module-position-event-sounds.c
index 30f0fd9f..789db240 100644
--- a/src/modules/module-position-event-sounds.c
+++ b/src/modules/module-position-event-sounds.c
@@ -137,7 +137,7 @@ int pa__init(pa_module*m) {
m->userdata = u = pa_xnew(struct userdata, 1);
u->core = m->core;
- u->sink_input_fixate_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_FIXATE], (pa_hook_cb_t) sink_input_fixate_hook_callback, u);
+ u->sink_input_fixate_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_FIXATE], PA_HOOK_EARLY, (pa_hook_cb_t) sink_input_fixate_hook_callback, u);
pa_modargs_free(ma);