bluetooth: a2dp-codec-util: Use lower index for higher priority
authorSanchayan Maity <sanchayan@asymptotic.io>
Tue, 15 Dec 2020 11:14:24 +0000 (16:44 +0530)
committerSanchayan Maity <sanchayan@asymptotic.io>
Tue, 19 Jan 2021 08:13:42 +0000 (13:43 +0530)
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: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/440>

src/modules/bluetooth/a2dp-codec-util.c

index 94d01e7..fef7092 100644 (file)
@@ -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,
 };