projects
/
profile
/
ivi
/
pulseaudio-panda.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01a853e
)
module-loopback: Prevent an infinite loop when rate adjusting is disabled
author
Maarten Lankhorst
<m.b.lankhorst@gmail.com>
Sat, 11 Dec 2010 11:05:30 +0000
(12:05 +0100)
committer
Colin Guthrie
<cguthrie@mandriva.org>
Sun, 12 Dec 2010 20:30:36 +0000
(20:30 +0000)
src/modules/module-loopback.c
patch
|
blob
|
history
diff --git
a/src/modules/module-loopback.c
b/src/modules/module-loopback.c
index
0695889
..
55716b2
100644
(file)
--- a/
src/modules/module-loopback.c
+++ b/
src/modules/module-loopback.c
@@
-501,7
+501,8
@@
static int sink_input_process_msg_cb(pa_msgobject *obj, int code, void *data, in
pa_assert_ctl_context();
- adjust_rates(u);
+ if (u->adjust_time > 0)
+ adjust_rates(u);
return 0;
}
}