diff options
Diffstat (limited to 'include/sound/seq_kernel.h')
-rw-r--r-- | include/sound/seq_kernel.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/include/sound/seq_kernel.h b/include/sound/seq_kernel.h index eea5400fe373..18a2ac58b88f 100644 --- a/include/sound/seq_kernel.h +++ b/include/sound/seq_kernel.h | |||
@@ -27,11 +27,8 @@ | |||
27 | typedef struct snd_seq_real_time snd_seq_real_time_t; | 27 | 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 events dequeued per schedule interval */ | ||
31 | #define SNDRV_SEQ_MAX_DEQUEUE 50 | ||
32 | |||
33 | /* maximum number of queues */ | 30 | /* maximum number of queues */ |
34 | #define SNDRV_SEQ_MAX_QUEUES 8 | 31 | #define SNDRV_SEQ_MAX_QUEUES 32 |
35 | 32 | ||
36 | /* max number of concurrent clients */ | 33 | /* max number of concurrent clients */ |
37 | #define SNDRV_SEQ_MAX_CLIENTS 192 | 34 | #define SNDRV_SEQ_MAX_CLIENTS 192 |
@@ -42,9 +39,6 @@ typedef union snd_seq_timestamp snd_seq_timestamp_t; | |||
42 | /* max number of events in memory pool */ | 39 | /* max number of events in memory pool */ |
43 | #define SNDRV_SEQ_MAX_EVENTS 2000 | 40 | #define SNDRV_SEQ_MAX_EVENTS 2000 |
44 | 41 | ||
45 | /* default number of events in memory chunk */ | ||
46 | #define SNDRV_SEQ_DEFAULT_CHUNK_EVENTS 64 | ||
47 | |||
48 | /* default number of events in memory pool */ | 42 | /* default number of events in memory pool */ |
49 | #define SNDRV_SEQ_DEFAULT_EVENTS 500 | 43 | #define SNDRV_SEQ_DEFAULT_EVENTS 500 |
50 | 44 | ||
@@ -70,7 +64,6 @@ struct snd_seq_port_callback { | |||
70 | int (*unuse)(void *private_data, struct snd_seq_port_subscribe *info); | 64 | int (*unuse)(void *private_data, struct snd_seq_port_subscribe *info); |
71 | int (*event_input)(struct snd_seq_event *ev, int direct, void *private_data, int atomic, int hop); | 65 | int (*event_input)(struct snd_seq_event *ev, int direct, void *private_data, int atomic, int hop); |
72 | void (*private_free)(void *private_data); | 66 | void (*private_free)(void *private_data); |
73 | unsigned int callback_all; /* call subscribe callbacks at each connection/disconnection */ | ||
74 | /*...*/ | 67 | /*...*/ |
75 | }; | 68 | }; |
76 | 69 | ||