diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-09-17 15:03:52 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2007-09-17 15:03:52 +0200 |
commit | d3339d7b8b706773529484801a2705b495f4cd66 (patch) | |
tree | 4a2a01faec8841cda9f5349da51f5ff2f4b99fe0 /src | |
parent | 8f5fa1a4aa27251bf945faae60291f602d3cc0b0 (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/conf/pcm/dmix.conf | 2 | ||||
-rw-r--r-- | src/conf/pcm/dsnoop.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/conf/pcm/dmix.conf b/src/conf/pcm/dmix.conf index 1bd3efef..4108ddb6 100644 --- a/src/conf/pcm/dmix.conf +++ b/src/conf/pcm/dmix.conf @@ -20,7 +20,7 @@ pcm.!dmix { } @args.SUBDEV { type integer - default -1 + default 0 } @args.FORMAT { type string diff --git a/src/conf/pcm/dsnoop.conf b/src/conf/pcm/dsnoop.conf index c461f0c9..49cfca98 100644 --- a/src/conf/pcm/dsnoop.conf +++ b/src/conf/pcm/dsnoop.conf @@ -20,7 +20,7 @@ pcm.!dsnoop { } @args.SUBDEV { type integer - default -1 + default 0 } @args.FORMAT { type string |