qahw: test: Send proxy device to hal to support playback over BT

To support A2DP src, output device should be set as proxy.
Modify test app to send output proxy device instead of A2DP device.

CRs-Fixed: 1081411
Change-Id: I9074a9468a765eda492c8c852ae37b0b2cfd9496
This commit is contained in:
Dhanalakshmi Siddani 2017-02-22 12:09:48 +05:30
parent 140f558c62
commit 84f3d9ea5e
1 changed files with 3 additions and 2 deletions

View File

@ -398,6 +398,8 @@ void *start_stream_playback (void* stream_data)
stream_config *params = (stream_config*) stream_data;
const char* stream_name = "output_stream";
if (params->output_device & AUDIO_DEVICE_OUT_ALL_A2DP)
params->output_device = AUDIO_DEVICE_OUT_PROXY;
rc = qahw_open_output_stream(params->qahw_mod_handle,
params->handle,
params->output_device,
@ -504,8 +506,7 @@ void *start_stream_playback (void* stream_data)
}
}
if (params->output_device & AUDIO_DEVICE_OUT_ALL_A2DP) {
params->output_device = AUDIO_DEVICE_OUT_PROXY;
if (params->output_device & AUDIO_DEVICE_OUT_PROXY) {
proxy_params.acp.qahw_mod_handle = params->qahw_mod_handle;
proxy_params.acp.handle = stream_handle;
stream_handle--;