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

Commit 2eb4f542 authored by E V Ravi's avatar E V Ravi Committed by Gerrit - the friendly Code Review server
Browse files

HAL: enable concurrent capture



audio-record-compress2 usecase is enabled for
concurrent audio capture

Change-Id: I7e231bec504dbc318b49fd758b79d6829be56a8d
Signed-off-by: default avatarE V Ravi <quic_evenka@quicinc.com>
parent 7edf03c7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@
        <usecase name="USECASE_ICC_CALL" type="out" id="33" />
        <usecase name="USECASE_AUDIO_PLAYBACK_SYNTHESIZER" type="in" id="33" />
        <usecase name="USECASE_AUDIO_PLAYBACK_SYNTHESIZER" type="out" id="33" />
        <usecase name="USECASE_AUDIO_RECORD_COMPRESS2" type="in" id="31" />
    </pcm_ids>

    <config_params>
+2 −2
Original line number Diff line number Diff line
@@ -384,7 +384,7 @@ vendor.audio.feature.compr_cap.enable=false \
vendor.audio.feature.compress_in.enable=false \
vendor.audio.feature.compress_meta_data.enable=false \
vendor.audio.feature.compr_voip.enable=false \
vendor.audio.feature.concurrent_capture.enable=false \
vendor.audio.feature.concurrent_capture.enable=true \
vendor.audio.feature.custom_stereo.enable=false \
vendor.audio.feature.display_port.enable=false \
vendor.audio.feature.dsm_feedback.enable=false \
@@ -432,7 +432,7 @@ vendor.audio.feature.compr_cap.enable=false \
vendor.audio.feature.compress_in.enable=true \
vendor.audio.feature.compress_meta_data.enable=true \
vendor.audio.feature.compr_voip.enable=false \
vendor.audio.feature.concurrent_capture.enable=false \
vendor.audio.feature.concurrent_capture.enable=true \
vendor.audio.feature.custom_stereo.enable=true \
vendor.audio.feature.display_port.enable=true \
vendor.audio.feature.dsm_feedback.enable=false \
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@
        <usecase name="USECASE_ICC_CALL" type="out" id="33" />
        <usecase name="USECASE_AUDIO_PLAYBACK_SYNTHESIZER" type="in" id="33" />
        <usecase name="USECASE_AUDIO_PLAYBACK_SYNTHESIZER" type="out" id="33" />
        <usecase name="USECASE_AUDIO_RECORD_COMPRESS2" type="in" id="31" />
    </pcm_ids>

    <config_params>
+2 −2
Original line number Diff line number Diff line
@@ -364,7 +364,7 @@ vendor.audio.feature.compr_cap.enable=false \
vendor.audio.feature.compress_in.enable=false \
vendor.audio.feature.compress_meta_data.enable=false \
vendor.audio.feature.compr_voip.enable=false \
vendor.audio.feature.concurrent_capture.enable=false  \
vendor.audio.feature.concurrent_capture.enable=true  \
vendor.audio.feature.custom_stereo.enable=false \
vendor.audio.feature.display_port.enable=false \
vendor.audio.feature.dsm_feedback.enable=false \
@@ -412,7 +412,7 @@ vendor.audio.feature.compr_cap.enable=false \
vendor.audio.feature.compress_in.enable=true \
vendor.audio.feature.compress_meta_data.enable=true \
vendor.audio.feature.compr_voip.enable=false \
vendor.audio.feature.concurrent_capture.enable=false \
vendor.audio.feature.concurrent_capture.enable=true \
vendor.audio.feature.custom_stereo.enable=true \
vendor.audio.feature.display_port.enable=true \
vendor.audio.feature.dsm_feedback.enable=false \
+5 −0
Original line number Diff line number Diff line
@@ -253,6 +253,11 @@ ifeq ($(strip $(AUDIO_FEATURE_ENABLED_QAF)),true)
    LOCAL_SRC_FILES += audio_extn/qaf.c
endif

# Concurrent capture
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_CONCURRENT_CAPTURE)),true)
    LOCAL_CFLAGS += -DCONCURRENT_CAPTURE_ENABLED
endif

# Hardware specific feature
ifeq ($(strip $(AUDIO_FEATURE_ENABLED_QAP)),true)
LOCAL_CFLAGS += -DQAP_EXTN_ENABLED -Wno-tautological-pointer-compare
Loading