Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Device Request for Lineage #5

Open
wants to merge 35 commits into
base: lineage-16.0
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f871b65
Automatic translation import
mikeNG Aug 16, 2018
ae21e70
AdvancedDisplay: Migrate to AAPT2
luk1337 Aug 25, 2018
8783821
libril: add missing return statement
Stricted Aug 26, 2018
2db58d0
dtbhtool: Add new DTBH_MODEL entry
raymanfx Jul 19, 2018
adbb83b
Automatic translation import
mikeNG Oct 13, 2018
f25d431
Adding WiFi MAC address for new S7 devices
ivanmeler Aug 28, 2018
28ad515
Automatic translation import
mikeNG Nov 4, 2018
d5e462b
audio: Fix WBS sample rate usage
Harinus Jul 26, 2017
f39cc59
Automatic translation import
mikeNG Nov 15, 2018
2275990
macloader: Add new mac addresses for semcosh and and murata
ivanmeler Nov 27, 2018
4629cda
Automatic translation import
mikeNG Nov 25, 2018
7afc5db
Automatic translation import
mikeNG Dec 14, 2018
31639ff
Automatic translation import
BadDaemon Jan 5, 2019
31a6edf
macloader: Add mac addresses observed on new revisions of Galaxy S7
ivanmeler Jan 28, 2019
d14fa13
Add unlisted SEMCO3RD mac address
ivanmeler Jan 31, 2019
89d323c
macloader: Add 3 more semco mac ranges
ivanmeler Feb 3, 2019
3ee6ef8
audio: run ril_set_call_clock_sync() in stop_voice_session()
Dec 19, 2017
79bae0c
audio: Directly link voice data <-> session
raymanfx Jan 29, 2018
c54b218
Audio: remove out stream resampler.
Sekilsgs2 May 8, 2018
5448a31
Audio: HAL should handle other streams (when call active)
Sekilsgs2 May 8, 2018
8f9bc00
Audio: check and route usecases
Sekilsgs2 May 8, 2018
b7c9da0
Audio: remove separated bt_sco playback profile
Sekilsgs2 May 20, 2018
eee1395
Audio: get_input_snd_device - use all bt sco devices for voice calls.
Sekilsgs2 May 22, 2018
5217007
Revert "audio: Fix incall device switch handling"
Sekilsgs2 May 30, 2018
ca79a1f
audio: Re-worked sound pre- and post-processing
basilgello May 21, 2018
c036f57
Audio: fix call recording.
Sekilsgs2 Jul 12, 2018
a6b09ce
Audio: fix voip calls over bluetooth headset.
Sekilsgs2 Jul 9, 2018
d7d1e3d
Audio: fix voip calls over bluetooth for Wolfson Microelectronics cod…
Sekilsgs2 Jul 9, 2018
d718ca7
audio_hw: Prevent referencing input devices from empty list
basilgello Jul 1, 2018
0ee1a23
Add anpother semco oui mapping
ivanmeler Feb 13, 2019
830c086
Automatic translation import
BadDaemon Mar 1, 2019
3d915eb
Automatic translation import
BadDaemon Mar 10, 2019
44f65be
Automatic translation import
mikeNG May 26, 2019
b372972
Automatic translation import
mikeNG Aug 6, 2019
66790ea
Automatic translation import
mikeNG Feb 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Audio: HAL should handle other streams (when call active)
Change-Id: I70fbd41ac386d7ea9a7fa0abb540151727461ac1
  • Loading branch information
Sekilsgs2 authored and Stricted committed Feb 5, 2019
commit 5448a31f1b7f27998f991218bbe7df44d8d1b0ae
11 changes: 0 additions & 11 deletions audio/audio_hw.c
Original file line number Diff line number Diff line change
@@ -2268,11 +2268,6 @@ static int out_open_pcm_devices(struct stream_out *out)
if (out->flags & AUDIO_OUTPUT_FLAG_DEEP_BUFFER)
pcm_device_id = pcm_device_deep_buffer.id;

if (out->dev->voice.in_call) {
ALOGV("%s: in_call, not opening PCMs", __func__);
return ret;
}

ALOGV("%s: Opening PCM device card_id(%d) device_id(%d)",
__func__, pcm_device_card, pcm_device_id);

@@ -3076,12 +3071,6 @@ static int out_get_presentation_position(const struct audio_stream_out *stream,
if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD) {
ret = out_get_presentation_offload_position(out, frames, timestamp);
} else {
if (out->dev->voice.in_call) {
ALOGVV("%s: in_call, do not handle PCMs", __func__);
ret = 0;
goto done;
}

/* FIXME: which device to read from? */
if (!list_empty(&out->pcm_dev_list)) {
struct pcm_device *pcm_device;