mirror of https://github.com/thesofproject/sof.git
topology2: wov-detect: correct use of define variables
To refer to a define variable, we should use "$DEFINE_VAR_NAME". The $ symbol is required. Signed-off-by: Chao Song <chao.song@linux.intel.com>
This commit is contained in:
parent
fd31092567
commit
1f4bc9f948
|
@ -67,9 +67,9 @@ Class.Pipeline."wov-detect" {
|
|||
out_rate 16000
|
||||
in_channels 2
|
||||
out_channels 1
|
||||
in_ch_map CHANNEL_MAP_STEREO
|
||||
in_ch_map $CHANNEL_MAP_STEREO
|
||||
in_ch_cfg 1
|
||||
out_ch_map CHANNEL_MAP_MONO
|
||||
out_ch_map $CHANNEL_MAP_MONO
|
||||
out_ch_cfg 0
|
||||
out_bit_depth 32
|
||||
in_bit_depth 32
|
||||
|
@ -87,7 +87,7 @@ Class.Pipeline."wov-detect" {
|
|||
in_channels 1
|
||||
out_channels 1
|
||||
in_ch_cfg 0
|
||||
in_ch_map CHANNEL_MAP_MONO
|
||||
in_ch_map $CHANNEL_MAP_MONO
|
||||
out_bit_depth 32
|
||||
in_bit_depth 32
|
||||
in_valid_bit_depth 32
|
||||
|
|
Loading…
Reference in New Issue