Tools: Topology1: Change ASRC mode to synchronous in pipeline macro

This pipeline PCM -> ASRC -> DAI is used only in testbench test
topologies usage. None of the normal topologies build in SOF
use it. Since testbench can't support without failure the DAI
timestamps, the asynchronous mode is disabled. This allows
to test ASRC objective audio quality similarly as normal SRC.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2023-11-03 13:43:02 +02:00 committed by Liam Girdwood
parent 1b9681e00f
commit a6d65ee6dc
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ define(MY_ASRC_TOKENS, concat(`asrc_tokens_', PIPELINE_ID))
define(MY_ASRC_CONF, concat(`asrc_conf_', PIPELINE_ID))
W_VENDORTUPLES(MY_ASRC_TOKENS, sof_asrc_tokens,
LIST(` ', `SOF_TKN_ASRC_RATE_OUT "PIPELINE_RATE"'
` ', `SOF_TKN_ASRC_ASYNCHRONOUS_MODE "1"'
` ', `SOF_TKN_ASRC_ASYNCHRONOUS_MODE "0"'
` ', `SOF_TKN_ASRC_OPERATION_MODE "0"'))
W_DATA(MY_ASRC_CONF, MY_ASRC_TOKENS)