mirror of https://github.com/thesofproject/sof.git
topology: add equalizer to hda generic topology
Add EQIIR and EQFIR to first playback pipeline. This help to expand more equalizer testing across platforms. Signed-off-by: Fred Oh <fred.oh@linux.intel.com>
This commit is contained in:
parent
890398a645
commit
dc8cf3e4d5
|
@ -23,9 +23,11 @@ set(TPLGS
|
|||
"sof-cht-max98090\;sof-cht-max98090"
|
||||
"sof-cht-rt5682\;sof-cht-rt5682"
|
||||
"sof-cht-src-50khz-pcm512x\;sof-cht-src-50khz-pcm512x"
|
||||
"sof-hda-generic\;sof-hda-generic\;-DCHANNELS=0"
|
||||
"sof-hda-generic\;sof-hda-generic-2ch\;-DCHANNELS=2"
|
||||
"sof-hda-generic\;sof-hda-generic-4ch\;-DCHANNELS=4"
|
||||
"sof-hda-generic\;sof-hda-generic\;-DCHANNELS=0\;-DPPROC=volume"
|
||||
"sof-hda-generic\;sof-hda-generic-2ch\;-DCHANNELS=2\;-DPPROC=volume"
|
||||
"sof-hda-generic\;sof-hda-generic-4ch\;-DCHANNELS=4\;-DPPROC=volume"
|
||||
"sof-hda-generic\;sof-hda-generic-eq-2ch\;-DCHANNELS=2\;-DPPROC=eq-volume"
|
||||
"sof-hda-generic\;sof-hda-generic-eq-4ch\;-DCHANNELS=4\;-DPPROC=eq-volume"
|
||||
"sof-hda-generic-idisp\;sof-hda-generic-idisp\;-DCHANNELS=0"
|
||||
"sof-hda-generic-idisp\;sof-hda-generic-idisp-2ch\;-DCHANNELS=2"
|
||||
"sof-hda-generic-idisp\;sof-hda-generic-idisp-4ch\;-DCHANNELS=4"
|
||||
|
|
|
@ -27,6 +27,10 @@ include(`platform/intel/intel-generic-dmic.m4')
|
|||
'
|
||||
)
|
||||
|
||||
# The pipeline naming notation is pipe-PROCESSING-DIRECTION.m4
|
||||
# PPROC is set by makefile
|
||||
define(PIPE_VOLUME_PLAYBACK, `sof/pipe-`PPROC'-playback.m4')
|
||||
|
||||
#
|
||||
# Define the pipelines
|
||||
#
|
||||
|
@ -41,7 +45,7 @@ include(`platform/intel/intel-generic-dmic.m4')
|
|||
|
||||
# Low Latency playback pipeline 1 on PCM 0 using max 2 channels of s24le.
|
||||
# 1000us deadline on core 0 with priority 0
|
||||
PIPELINE_PCM_ADD(sof/pipe-volume-playback.m4,
|
||||
PIPELINE_PCM_ADD(PIPE_VOLUME_PLAYBACK,
|
||||
1, 0, 2, s24le,
|
||||
1000, 0, 0,
|
||||
48000, 48000, 48000)
|
||||
|
|
Loading…
Reference in New Issue