From: João Paulo Rechi Vita Date: Tue, 24 Sep 2013 22:45:48 +0000 (-0300) Subject: bluetooth: Create source for BlueZ 5 cards X-Git-Tag: accepted/tizen/20131022.162753~84 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d1decffd7e4adeb2b6930e81ba9a17b761af263;p=platform%2Fupstream%2Fpulseaudio.git bluetooth: Create source for BlueZ 5 cards --- diff --git a/src/modules/bluetooth/module-bluez5-device.c b/src/modules/bluetooth/module-bluez5-device.c index e15c954..237f897 100644 --- a/src/modules/bluetooth/module-bluez5-device.c +++ b/src/modules/bluetooth/module-bluez5-device.c @@ -72,6 +72,7 @@ struct userdata { pa_card *card; pa_sink *sink; + pa_source *source; pa_bluetooth_profile_t profile; char *output_port_name; char *input_port_name; @@ -205,6 +206,46 @@ static int transport_acquire(struct userdata *u, bool optional) { } /* Run from main thread */ +static int add_source(struct userdata *u) { + pa_source_new_data data; + + pa_assert(u->transport); + + pa_source_new_data_init(&data); + data.module = u->module; + data.card = u->card; + data.driver = __FILE__; + data.name = pa_sprintf_malloc("bluez_source.%s", u->device->address); + data.namereg_fail = false; + pa_proplist_sets(data.proplist, "bluetooth.protocol", pa_bluetooth_profile_to_string(u->profile)); + pa_source_new_data_set_sample_spec(&data, &u->sample_spec); + + connect_ports(u, &data, PA_DIRECTION_INPUT); + + if (!u->transport_acquired) + switch (u->profile) { + case PA_BLUETOOTH_PROFILE_A2DP_SOURCE: + data.suspend_cause = PA_SUSPEND_USER; + break; + case PA_BLUETOOTH_PROFILE_A2DP_SINK: + case PA_BLUETOOTH_PROFILE_OFF: + pa_assert_not_reached(); + break; + } + + u->source = pa_source_new(u->core, &data, PA_SOURCE_HARDWARE|PA_SOURCE_LATENCY); + pa_source_new_data_done(&data); + if (!u->source) { + pa_log_error("Failed to create source"); + return -1; + } + + u->source->userdata = u; + + return 0; +} + +/* Run from main thread */ static int add_sink(struct userdata *u) { pa_sink_new_data data; @@ -394,7 +435,9 @@ static int init_profile(struct userdata *u) { if (add_sink(u) < 0) r = -1; - /* TODO: add source */ + if (u->profile == PA_BLUETOOTH_PROFILE_A2DP_SOURCE) + if (add_source(u) < 0) + r = -1; return r; }