[pulseaudio-commits] src/modules
Tanu Kaskinen
tanuk at kemper.freedesktop.org
Mon Feb 20 14:39:53 UTC 2017
src/modules/module-loopback.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
New commits:
commit a8e0556120ed8f6e3263eb2202aae3cb6c1e3975
Author: Georg Chini <georg at chini.tk>
Date: Sun Feb 19 17:15:09 2017 +0100
loopback: correct comments about the thread calling a function
The comments were wrong and confusing.
diff --git a/src/modules/module-loopback.c b/src/modules/module-loopback.c
index 016d403..2907bbc 100644
--- a/src/modules/module-loopback.c
+++ b/src/modules/module-loopback.c
@@ -163,7 +163,7 @@ static void teardown(struct userdata *u) {
}
}
-/* rate controller
+/* rate controller, called from main context
* - maximum deviation from base rate is less than 1%
* - can create audible artifacts by changing the rate too quickly
* - exhibits hunting with USB or Bluetooth sources
@@ -318,7 +318,7 @@ static void source_output_process_rewind_cb(pa_source_output *o, size_t nbytes)
u->send_counter -= (int64_t) nbytes;
}
-/* Called from output thread context */
+/* Called from input thread context */
static int source_output_process_msg_cb(pa_msgobject *obj, int code, void *data, int64_t offset, pa_memchunk *chunk) {
struct userdata *u = PA_SOURCE_OUTPUT(obj)->userdata;
@@ -342,7 +342,7 @@ static int source_output_process_msg_cb(pa_msgobject *obj, int code, void *data,
return pa_source_output_process_msg(obj, code, data, offset, chunk);
}
-/* Called from output thread context */
+/* Called from input thread context */
static void source_output_attach_cb(pa_source_output *o) {
struct userdata *u;
@@ -356,7 +356,7 @@ static void source_output_attach_cb(pa_source_output *o) {
u->asyncmsgq);
}
-/* Called from output thread context */
+/* Called from input thread context */
static void source_output_detach_cb(pa_source_output *o) {
struct userdata *u;
@@ -370,7 +370,7 @@ static void source_output_detach_cb(pa_source_output *o) {
}
}
-/* Called from output thread context */
+/* Called from input thread context */
static void source_output_state_change_cb(pa_source_output *o, pa_source_output_state_t state) {
struct userdata *u;
More information about the pulseaudio-commits
mailing list