mirror of https://github.com/thesofproject/sof.git
topology2: cavs-nocodec-bt: Replace audio_format objects
Use the input_audio_format/output_audio_format objects instead. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
This commit is contained in:
parent
55a352a549
commit
bdd3bf2409
|
@ -13,9 +13,11 @@
|
|||
<virtual.conf>
|
||||
<host-gateway-playback.conf>
|
||||
<host-gateway-capture.conf>
|
||||
<input_audio_format.conf>
|
||||
<io-gateway.conf>
|
||||
<io-gateway-capture.conf>
|
||||
<data.conf>
|
||||
<output_audio_format.conf>
|
||||
<pcm.conf>
|
||||
<pcm_caps.conf>
|
||||
<fe_dai.conf>
|
||||
|
@ -219,12 +221,18 @@ Object.Pipeline {
|
|||
copier_type "SSP"
|
||||
stream_name "NoCodec-0"
|
||||
node_type $I2S_LINK_INPUT_CLASS
|
||||
Object.Base.audio_format.1 {
|
||||
in_bit_depth 32
|
||||
in_valid_bit_depth 32
|
||||
out_bit_depth 32
|
||||
out_valid_bit_depth 32
|
||||
}
|
||||
Object.Base.input_audio_format [
|
||||
{
|
||||
in_bit_depth 32
|
||||
in_valid_bit_depth 32
|
||||
}
|
||||
]
|
||||
Object.Base.output_audio_format [
|
||||
{
|
||||
out_bit_depth 32
|
||||
out_valid_bit_depth 32
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
{
|
||||
|
@ -241,12 +249,18 @@ Object.Pipeline {
|
|||
copier_type "SSP"
|
||||
stream_name "NoCodec-1"
|
||||
node_type $I2S_LINK_INPUT_CLASS
|
||||
Object.Base.audio_format.1 {
|
||||
in_bit_depth 32
|
||||
in_valid_bit_depth 32
|
||||
out_bit_depth 32
|
||||
out_valid_bit_depth 32
|
||||
}
|
||||
Object.Base.input_audio_format [
|
||||
{
|
||||
in_bit_depth 32
|
||||
in_valid_bit_depth 32
|
||||
}
|
||||
]
|
||||
Object.Base.output_audio_format [
|
||||
{
|
||||
out_bit_depth 32
|
||||
out_valid_bit_depth 32
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue