Skip to content

Commit

Permalink
topology2: mixout-gain-efx-dai-copier-playback: Use index explicitly …
Browse files Browse the repository at this point in the history
…in routes

The old notation to leave out pipeline ID is not very readable.

Signed-off-by: Ranjani Sridharan <[email protected]>
  • Loading branch information
ranj063 committed Nov 9, 2023
1 parent b7d7fb0 commit 0c15356
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,20 +170,20 @@ Class.Pipeline."mixout-gain-efx-dai-copier-playback" {

Object.Base {
route.1 {
source mixout..1
sink gain..1
source mixout.$index.1
sink gain.$index.1
}
route.2 {
source gain..1
source gain.$index.1
sink eqiir..1
}
route.3 {
source eqiir..1
sink eqfir..1
source eqiir.$index.1
sink eqfir.$index.1
}
route.4 {
source eqfir..1
sink drc..1
source eqfir.$index.1
sink drc.$index.1
}
}

Expand Down

0 comments on commit 0c15356

Please sign in to comment.