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

Commit e6c783ec authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Merge 99dc7f62 on remote branch

Change-Id: If4533e991cfb0aa997d00cf46d02f4e68ac96d93
parents bc52acd9 99dc7f62
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -94,4 +94,20 @@ inputs {
    bit_width 16
    app_type 69943
  }
  record_fluence1 {
    flags AUDIO_INPUT_FLAG_NONE
    profile record_fluence
    formats AUDIO_FORMAT_PCM_16_BIT
    sampling_rates 16000|48000
    bit_width 16
    app_type 69943
  }
  record_fluence2 {
    flags AUDIO_INPUT_FLAG_COMPRESS
    profile record_fluence
    formats AUDIO_FORMAT_PCM_16_BIT
    sampling_rates 16000|48000
    bit_width 16
    app_type 69943
  }
}
+10 −1
Original line number Diff line number Diff line
@@ -107,7 +107,16 @@ PRODUCT_PROPERTY_OVERRIDES += \
ro.vendor.audio.sdk.fluencetype=none\
persist.vendor.audio.fluence.voicecall=true\
persist.vendor.audio.fluence.voicerec=false\
persist.vendor.audio.fluence.speaker=true
persist.vendor.audio.fluence.speaker=true\
persist.vendor.audio.fluence.audiorec=false

#enable generic handset mic
PRODUCT_PROPERTY_OVERRIDES += \
vendor.audio.apptype.multirec.enabled=false

#enable multi record
PRODUCT_PROPERTY_OVERRIDES += \
vendor.audio.record.multiple.enabled=true

#disable tunnel encoding
PRODUCT_PROPERTY_OVERRIDES += \
+371 −0

File changed.

Preview size limit exceeded, changes collapsed.

+2315 −0

File added.

Preview size limit exceeded, changes collapsed.

+14 −13
Original line number Diff line number Diff line
@@ -2,26 +2,26 @@
#
#AUDIO_FEATURE_FLAGS
BOARD_USES_ALSA_AUDIO := true
TARGET_USES_AOSP_FOR_AUDIO := true
TARGET_USES_AOSP_FOR_AUDIO := false

ifneq ($(TARGET_USES_AOSP_FOR_AUDIO), true)
USE_CUSTOM_AUDIO_POLICY := 1
AUDIO_FEATURE_ENABLED_COMPRESS_CAPTURE := false
AUDIO_FEATURE_ENABLED_COMPRESS_VOIP := false
AUDIO_FEATURE_ENABLED_DYNAMIC_ECNS := false
AUDIO_FEATURE_ENABLED_EXTN_FORMATS := false
AUDIO_FEATURE_ENABLED_EXTN_FLAC_DECODER := false
AUDIO_FEATURE_ENABLED_DYNAMIC_ECNS := true
AUDIO_FEATURE_ENABLED_EXTN_FORMATS := true
AUDIO_FEATURE_ENABLED_EXTN_FLAC_DECODER := true
AUDIO_FEATURE_ENABLED_EXTN_RESAMPLER := true
AUDIO_FEATURE_ENABLED_FM_POWER_OPT := true
AUDIO_FEATURE_ENABLED_HDMI_SPK := true
AUDIO_FEATURE_ENABLED_PCM_OFFLOAD := false
AUDIO_FEATURE_ENABLED_PCM_OFFLOAD_24 := false
AUDIO_FEATURE_ENABLED_FLAC_OFFLOAD := false
AUDIO_FEATURE_ENABLED_VORBIS_OFFLOAD := false
AUDIO_FEATURE_ENABLED_WMA_OFFLOAD := false
AUDIO_FEATURE_ENABLED_ALAC_OFFLOAD := false
AUDIO_FEATURE_ENABLED_APE_OFFLOAD := false
AUDIO_FEATURE_ENABLED_AAC_ADTS_OFFLOAD := false
AUDIO_FEATURE_ENABLED_PCM_OFFLOAD := true
AUDIO_FEATURE_ENABLED_PCM_OFFLOAD_24 := true
AUDIO_FEATURE_ENABLED_FLAC_OFFLOAD := true
AUDIO_FEATURE_ENABLED_VORBIS_OFFLOAD := true
AUDIO_FEATURE_ENABLED_WMA_OFFLOAD := true
AUDIO_FEATURE_ENABLED_ALAC_OFFLOAD := true
AUDIO_FEATURE_ENABLED_APE_OFFLOAD := true
AUDIO_FEATURE_ENABLED_AAC_ADTS_OFFLOAD := true
AUDIO_FEATURE_ENABLED_PROXY_DEVICE := true
AUDIO_FEATURE_ENABLED_SSR := true
AUDIO_FEATURE_ENABLED_DTS_EAGLE := false
@@ -31,7 +31,7 @@ MM_AUDIO_ENABLED_SAFX := true
AUDIO_FEATURE_ENABLED_HW_ACCELERATED_EFFECTS := false
AUDIO_FEATURE_ENABLED_AUDIOSPHERE := true
AUDIO_FEATURE_ENABLED_USB_TUNNEL_AUDIO := true
AUDIO_FEATURE_ENABLED_SPLIT_A2DP := false
AUDIO_FEATURE_ENABLED_SPLIT_A2DP := true
AUDIO_FEATURE_ENABLED_3D_AUDIO := false
DOLBY_ENABLE := false
endif
@@ -82,6 +82,7 @@ PRODUCT_COPY_FILES += \
    hardware/qcom/audio/configs/msmsteppe/audio_platform_info_intcodec.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_platform_info_intcodec.xml \
    hardware/qcom/audio/configs/msmsteppe/sound_trigger_mixer_paths.xml:$(TARGET_COPY_OUT_VENDOR)/etc/sound_trigger_mixer_paths.xml \
    hardware/qcom/audio/configs/msmsteppe/mixer_paths_idp.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mixer_paths_idp.xml \
    hardware/qcom/audio/configs/msmsteppe/mixer_paths_qrd.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mixer_paths_qrd.xml \
    hardware/qcom/audio/configs/msmsteppe/mixer_paths_tavil.xml:$(TARGET_COPY_OUT_VENDOR)/etc/mixer_paths_tavil.xml \

#XML Audio configuration files
Loading