[pulseaudio-discuss] [PATCH] role-cork: Use the PA_IDXSET_FOREACH macro

이정섭 jungsup4.lee at gmail.com
Wed Feb 17 15:12:37 UTC 2016


Simplify code by using PA_IDXSET_FOREACH.

Signed-off-by: Jungsup Lee <jungsup4.lee at samsung.com>
---
 src/modules/module-role-cork.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/module-role-cork.c b/src/modules/module-role-cork.c
index 7c0f59f..4ae2005 100644
--- a/src/modules/module-role-cork.c
+++ b/src/modules/module-role-cork.c
@@ -70,7 +70,7 @@ static bool shall_cork(struct userdata *u, pa_sink
*s, pa_sink_input *ignore) {
     pa_assert(u);
     pa_sink_assert_ref(s);

-    for (j = PA_SINK_INPUT(pa_idxset_first(s->inputs, &idx)); j; j =
PA_SINK_INPUT(pa_idxset_next(s->inputs, &idx))) {
+    PA_IDXSET_FOREACH(j, s->inputs, idx) {
         const char *role;

         if (j == ignore)
@@ -99,7 +99,7 @@ static inline void apply_cork_to_sink(struct
userdata *u, pa_sink *s, pa_sink_in
     pa_assert(u);
     pa_sink_assert_ref(s);

-    for (j = PA_SINK_INPUT(pa_idxset_first(s->inputs, &idx)); j; j =
PA_SINK_INPUT(pa_idxset_next(s->inputs, &idx))) {
+    PA_IDXSET_FOREACH(j, s->inputs, idx) {
         bool corked, corked_here;
         const char *role;

--
2.6.4


<div id="DDB4FAA8-2DD7-40BB-A1B8-4E2AA1F9FDF2"><br />
<table style="border-top: 1px solid #aaabb6;">
	<tr>
		
		<td style="width: 470px; padding-top: 20px; color: #41424e;
font-size: 13px; font-family: Arial, Helvetica, sans-serif;
line-height: 18px;">본 이메일은 Avast로 보호되는 안전한 컴퓨터에서 발송되었습니다. <br /><a
href="https://www.avast.com/sig-email" target="_blank" style="color:
#4453ea;">www.avast.com</a> 		</td>
	</tr>
</table>
<a href="#DDB4FAA8-2DD7-40BB-A1B8-4E2AA1F9FDF2" width="1" height="1"></a></div>


More information about the pulseaudio-discuss mailing list