sink-input: adjust log level of empty-pop operations
[platform/upstream/pulseaudio.git] / src / pulsecore / idxset.h
index 7acb202..2187b28 100644 (file)
@@ -109,6 +109,11 @@ bool pa_idxset_isempty(pa_idxset *s);
  * copy will be made. */
 pa_idxset *pa_idxset_copy(pa_idxset *s, pa_copy_func_t copy_func);
 
+#ifdef __TIZEN__
+/* Similar to pa_idxset_copy(), but with a filter that can choose the entry to be copied */
+pa_idxset* pa_idxset_filtered_copy(pa_idxset *s, pa_copy_func_t copy_func, pa_compare_func_t filter_func, const void *filter);
+#endif
+
 /* A macro to ease iteration through all entries */
 #define PA_IDXSET_FOREACH(e, s, idx) \
     for ((e) = pa_idxset_first((s), &(idx)); (e); (e) = pa_idxset_next((s), &(idx)))