Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92d72774 authored by Mikhail Naganov's avatar Mikhail Naganov
Browse files

Add AUDIO_FORMAT_APTX_ADAPTIVE_{QLEA|R4}

This adds new flavors of the APTX codec.

Bug: 255477173
Test: m
Change-Id: I5e08d366b7ad97aacee47b13ee798c18d9402e94
parent 57c7a347
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -1039,6 +1039,16 @@ const detail::AudioFormatPairs& getAudioFormatPairs() {
        {
        {
            AUDIO_FORMAT_DRA, make_AudioFormatDescription(MEDIA_MIMETYPE_AUDIO_DRA)
            AUDIO_FORMAT_DRA, make_AudioFormatDescription(MEDIA_MIMETYPE_AUDIO_DRA)
        },
        },
        {
            // Note: not in the IANA registry.
            AUDIO_FORMAT_APTX_ADAPTIVE_QLEA,
            make_AudioFormatDescription("audio/vnd.qcom.aptx.adaptive.r3")
        },
        {
            // Note: not in the IANA registry.
            AUDIO_FORMAT_APTX_ADAPTIVE_R4,
            make_AudioFormatDescription("audio/vnd.qcom.aptx.adaptive.r4")
        },
    }};
    }};
    return pairs;
    return pairs;
}
}