From: Seungbae Shin Date: Fri, 14 Jan 2022 05:09:20 +0000 (+0900) Subject: bluetooth: Fix crash by excluding sbc_xq end-points X-Git-Tag: submit/tizen/20220124.093031~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F22%2F269422%2F3;p=platform%2Fupstream%2Fpulseaudio.git bluetooth: Fix crash by excluding sbc_xq end-points Tizen supports basic sbc end-point only Change-Id: I3237f3fdca89612f15d0e71f77302e331f4a0ba6 --- diff --git a/src/modules/bluetooth/a2dp-codec-util.c b/src/modules/bluetooth/a2dp-codec-util.c index 7db0251..f28e3a9 100644 --- a/src/modules/bluetooth/a2dp-codec-util.c +++ b/src/modules/bluetooth/a2dp-codec-util.c @@ -66,9 +66,11 @@ static const pa_a2dp_endpoint_conf *pa_a2dp_endpoint_configurations[] = { &pa_a2dp_endpoint_conf_aptx, #endif &pa_a2dp_endpoint_conf_sbc, +#ifndef __TIZEN_BT__ &pa_a2dp_endpoint_conf_sbc_xq_453, &pa_a2dp_endpoint_conf_sbc_xq_512, &pa_a2dp_endpoint_conf_sbc_xq_552, +#endif }; unsigned int pa_bluetooth_a2dp_endpoint_conf_count(void) {