configs: Add flag to control support for 3D audio
Introduce feature flag to control support for 3D audio Change-Id: I280d0619236c3fc46b0f8623fab58d7f641f6127
This commit is contained in:
parent
0b9bfb0bc6
commit
4aa384038c
|
@ -42,9 +42,6 @@ libraries {
|
|||
audio_pre_processing {
|
||||
path /vendor/lib/soundfx/libqcomvoiceprocessing.so
|
||||
}
|
||||
loudness_enhancer {
|
||||
path /vendor/lib/soundfx/libldnhncr.so
|
||||
}
|
||||
volume_listener {
|
||||
path /vendor/lib/soundfx/libvolumelistener.so
|
||||
}
|
||||
|
|
|
@ -42,15 +42,15 @@ libraries {
|
|||
audio_pre_processing {
|
||||
path /vendor/lib/soundfx/libqcomvoiceprocessing.so
|
||||
}
|
||||
loudness_enhancer {
|
||||
path /vendor/lib/soundfx/libldnhncr.so
|
||||
}
|
||||
volume_listener {
|
||||
path /vendor/lib/soundfx/libvolumelistener.so
|
||||
}
|
||||
audiosphere {
|
||||
path /vendor/lib/soundfx/libasphere.so
|
||||
}
|
||||
shoebox {
|
||||
path /vendor/lib/soundfx/libshoebox.so
|
||||
}
|
||||
}
|
||||
|
||||
# Default pre-processing library. Add to audio_effect.conf "libraries" section if
|
||||
|
@ -259,6 +259,10 @@ effects {
|
|||
library audiosphere
|
||||
uuid 184e62ab-2d19-4364-9d1b-c0a40733866c
|
||||
}
|
||||
shoebox {
|
||||
library shoebox
|
||||
uuid 1eab784c-1a36-4b2a-b7fc-e34c44cab89e
|
||||
}
|
||||
}
|
||||
|
||||
# additional effect from vendor
|
||||
|
|
|
@ -30,7 +30,7 @@ AUDIO_FEATURE_ENABLED_HW_ACCELERATED_EFFECTS := false
|
|||
AUDIO_FEATURE_ENABLED_AUDIOSPHERE := true
|
||||
AUDIO_FEATURE_ENABLED_USB_TUNNEL_AUDIO := true
|
||||
AUDIO_FEATURE_ENABLED_SPLIT_A2DP := true
|
||||
AUDIO_FEATURE_ENABLED_3D_AUDIO := false
|
||||
AUDIO_FEATURE_ENABLED_3D_AUDIO := true
|
||||
AUDIO_FEATURE_ENABLED_VOICE_PRINT := false
|
||||
USE_LEGACY_AUDIO_DAEMON := false
|
||||
USE_LEGACY_AUDIO_MEASUREMENT := false
|
||||
|
|
|
@ -42,9 +42,6 @@ libraries {
|
|||
audio_pre_processing {
|
||||
path /vendor/lib/soundfx/libqcomvoiceprocessing.so
|
||||
}
|
||||
loudness_enhancer {
|
||||
path /vendor/lib/soundfx/libldnhncr.so
|
||||
}
|
||||
volume_listener {
|
||||
path /vendor/lib/soundfx/libvolumelistener.so
|
||||
}
|
||||
|
|
|
@ -42,15 +42,15 @@ libraries {
|
|||
audio_pre_processing {
|
||||
path /vendor/lib/soundfx/libqcomvoiceprocessing.so
|
||||
}
|
||||
loudness_enhancer {
|
||||
path /vendor/lib/soundfx/libldnhncr.so
|
||||
}
|
||||
volume_listener {
|
||||
path /vendor/lib/soundfx/libvolumelistener.so
|
||||
}
|
||||
audiosphere {
|
||||
path /vendor/lib/soundfx/libasphere.so
|
||||
}
|
||||
shoebox {
|
||||
path /vendor/lib/soundfx/libshoebox.so
|
||||
}
|
||||
}
|
||||
|
||||
# Default pre-processing library. Add to audio_effect.conf "libraries" section if
|
||||
|
@ -259,6 +259,10 @@ effects {
|
|||
library audiosphere
|
||||
uuid 184e62ab-2d19-4364-9d1b-c0a40733866c
|
||||
}
|
||||
shoebox {
|
||||
library shoebox
|
||||
uuid 1eab784c-1a36-4b2a-b7fc-e34c44cab89e
|
||||
}
|
||||
}
|
||||
|
||||
# additional effect from vendor
|
||||
|
|
|
@ -30,7 +30,7 @@ AUDIO_FEATURE_ENABLED_HW_ACCELERATED_EFFECTS := false
|
|||
AUDIO_FEATURE_ENABLED_AUDIOSPHERE := true
|
||||
AUDIO_FEATURE_ENABLED_USB_TUNNEL_AUDIO := true
|
||||
AUDIO_FEATURE_ENABLED_SPLIT_A2DP := true
|
||||
AUDIO_FEATURE_ENABLED_3D_AUDIO := false
|
||||
AUDIO_FEATURE_ENABLED_3D_AUDIO := true
|
||||
DOLBY_ENABLE := false
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue