diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2015-01-25 08:36:46 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-01-26 07:57:29 -0500 |
commit | 1001fb810b1295d0600c0c6bdcb17889460470a5 (patch) | |
tree | 031a161979d6bf3853fe2fb779ef62dd393474e5 /include/sound | |
parent | a55bdf1ec5945050bfce9c3b2c3d8b70e8fd01a1 (diff) |
ALSA: seq: increase the maximum number of queues
Queues are used both for scheduling playback events and for assigning
timestamps to recorded events, so it is easy to need quite a lot of
them, especially on a multi-user system. Additionally, the actual
queue objects are allocated dynamically, so it does not really make
sense to have a low limit. Increase it to something still sane.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/seq_kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/seq_kernel.h b/include/sound/seq_kernel.h index f1c8e94524b8..18a2ac58b88f 100644 --- a/include/sound/seq_kernel.h +++ b/include/sound/seq_kernel.h | |||
@@ -28,7 +28,7 @@ typedef struct snd_seq_real_time snd_seq_real_time_t; | |||
28 | typedef union snd_seq_timestamp snd_seq_timestamp_t; | 28 | typedef union snd_seq_timestamp snd_seq_timestamp_t; |
29 | 29 | ||
30 | /* maximum number of queues */ | 30 | /* maximum number of queues */ |
31 | #define SNDRV_SEQ_MAX_QUEUES 8 | 31 | #define SNDRV_SEQ_MAX_QUEUES 32 |
32 | 32 | ||
33 | /* max number of concurrent clients */ | 33 | /* max number of concurrent clients */ |
34 | #define SNDRV_SEQ_MAX_CLIENTS 192 | 34 | #define SNDRV_SEQ_MAX_CLIENTS 192 |