From: Sanchayan Maity Date: Tue, 15 Dec 2020 11:14:24 +0000 (+0530) Subject: bluetooth: a2dp-codec-util: Use lower index for higher priority X-Git-Tag: v14.99.1~166 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fca6a2fd68ade78a82ebd96b9bad2410086bb3e2;p=platform%2Fupstream%2Fpulseaudio.git bluetooth: a2dp-codec-util: Use lower index for higher priority Instead of letting a codec with higher index have higher priority, just use a lower index for high priority. This allows the for loop iterating over the codecs to be written in a straightforward manner and not have to iterate from the end. FWIW Pipewire does the same. Part-of: --- diff --git a/src/modules/bluetooth/a2dp-codec-util.c b/src/modules/bluetooth/a2dp-codec-util.c index 94d01e7..fef7092 100644 --- a/src/modules/bluetooth/a2dp-codec-util.c +++ b/src/modules/bluetooth/a2dp-codec-util.c @@ -29,7 +29,7 @@ extern const pa_a2dp_codec pa_a2dp_codec_sbc; /* This is list of supported codecs. Their order is important. - * Codec with higher index has higher priority. */ + * Codec with lower index has higher priority. */ const pa_a2dp_codec *pa_a2dp_codecs[] = { &pa_a2dp_codec_sbc, };