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: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/440>
This commit is contained in:
Sanchayan Maity 2020-12-15 16:44:24 +05:30
parent f7c84b3217
commit fca6a2fd68

View file

@ -29,7 +29,7 @@
extern const pa_a2dp_codec pa_a2dp_codec_sbc; extern const pa_a2dp_codec pa_a2dp_codec_sbc;
/* This is list of supported codecs. Their order is important. /* 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[] = { const pa_a2dp_codec *pa_a2dp_codecs[] = {
&pa_a2dp_codec_sbc, &pa_a2dp_codec_sbc,
}; };