[pulseaudio-commits] src/pulsecore
Arun Raghavan
arun at kemper.freedesktop.org
Mon Feb 17 12:03:41 CET 2014
src/pulsecore/protocol-native.c | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
New commits:
commit 3152226502014129d03a50564b1914ce267817f9
Author: Arun Raghavan <arun at accosted.net>
Date: Mon Feb 17 16:32:40 2014 +0530
Revert "protocol-native: Don't enumerate unlinked sinks and sources"
This reverts commit bd0bd9143f8159e5475b1295e30ec026ff0b6fef.
diff --git a/src/pulsecore/protocol-native.c b/src/pulsecore/protocol-native.c
index 80e72a8..41b4b50 100644
--- a/src/pulsecore/protocol-native.c
+++ b/src/pulsecore/protocol-native.c
@@ -3588,13 +3588,11 @@ static void command_get_info_list(pa_pdispatch *pd, uint32_t command, uint32_t t
if (i) {
PA_IDXSET_FOREACH(p, i, idx) {
- if (command == PA_COMMAND_GET_SINK_INFO_LIST) {
- if (PA_SINK_IS_LINKED(((pa_sink *)p)->state))
- sink_fill_tagstruct(c, reply, p);
- } else if (command == PA_COMMAND_GET_SOURCE_INFO_LIST) {
- if (PA_SOURCE_IS_LINKED(((pa_source *)p)->state))
- source_fill_tagstruct(c, reply, p);
- } else if (command == PA_COMMAND_GET_CLIENT_INFO_LIST)
+ if (command == PA_COMMAND_GET_SINK_INFO_LIST)
+ sink_fill_tagstruct(c, reply, p);
+ else if (command == PA_COMMAND_GET_SOURCE_INFO_LIST)
+ source_fill_tagstruct(c, reply, p);
+ else if (command == PA_COMMAND_GET_CLIENT_INFO_LIST)
client_fill_tagstruct(c, reply, p);
else if (command == PA_COMMAND_GET_CARD_INFO_LIST)
card_fill_tagstruct(c, reply, p);
More information about the pulseaudio-commits
mailing list