]> code.delx.au - pulseaudio/blobdiff - polyp/native-common.h
info and subscription work
[pulseaudio] / polyp / native-common.h
index 4a74ac449b4d6a3847d0f28ece9baf5eaf7f0b4e..5e69c805ce834e3d176b8f42fc3d1d840fa60502 100644 (file)
@@ -87,4 +87,32 @@ enum {
 #define PA_NATIVE_COOKIE_LENGTH 256
 #define PA_NATIVE_COOKIE_FILE ".polypaudio-cookie"
 
+enum pa_subscription_mask {
+    PA_SUBSCRIPTION_FACILITY_SINK = 1,
+    PA_SUBSCRIPTION_FACILITY_SOURCE = 2,
+    PA_SUBSCRIPTION_FACILITY_SINK_INPUT = 4,
+    PA_SUBSCRIPTION_FACILITY_SOURCE_OUTPUT = 8,
+    PA_SUBSCRIPTION_FACILITY_MODULE = 16,
+    PA_SUBSCRIPTION_FACILITY_CLIENT = 32,
+    PA_SUBSCRIPTION_FACILITY_SAMPLE_CACHE = 64,
+};
+
+enum pa_subscription_event_type {
+    PA_SUBSCRIPTION_EVENT_SINK = 0,
+    PA_SUBSCRIPTION_EVENT_SOURCE = 1,
+    PA_SUBSCRIPTION_EVENT_SINK_INPUT = 2,
+    PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT = 3,
+    PA_SUBSCRIPTION_EVENT_MODULE = 4,
+    PA_SUBSCRIPTION_EVENT_CLIENT = 5,
+    PA_SUBSCRIPTION_EVENT_SAMPLE_CACHE = 6,
+    PA_SUBSCRIPTION_EVENT_FACILITY_MASK = 7,
+
+    PA_SUBSCRIPTION_EVENT_NEW = 0,
+    PA_SUBSCRIPTION_EVENT_CHANGE = 16,
+    PA_SUBSCRIPTION_EVENT_REMOVE = 32,
+    PA_SUBSCRIPTION_EVENT_TYPE_MASK = 16+32,
+};
+
+#define pa_subscription_match_flags(m, t) (!!((m) & (1 << ((t) & PA_SUBSCRIPTION_EVENT_FACILITY_MASK))))
+
 #endif