mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-31 22:25:35 -04:00
Fix subdevice number to 0 for dmix/dsnoop
The dmix and dsnoop plugins need a fixed substream number instead of the next-available one (-1) as the default number. Now it's set to 0.
This commit is contained in:
parent
8f5fa1a4aa
commit
d3339d7b8b
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ pcm.!dmix {
|
||||||
}
|
}
|
||||||
@args.SUBDEV {
|
@args.SUBDEV {
|
||||||
type integer
|
type integer
|
||||||
default -1
|
default 0
|
||||||
}
|
}
|
||||||
@args.FORMAT {
|
@args.FORMAT {
|
||||||
type string
|
type string
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ pcm.!dsnoop {
|
||||||
}
|
}
|
||||||
@args.SUBDEV {
|
@args.SUBDEV {
|
||||||
type integer
|
type integer
|
||||||
default -1
|
default 0
|
||||||
}
|
}
|
||||||
@args.FORMAT {
|
@args.FORMAT {
|
||||||
type string
|
type string
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue