1998-08-13 15:42:56 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* mixer.h *
|
|
|
|
* Mixer Interface *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
typedef struct snd_mixer_callbacks {
|
1999-11-30 09:25:59 +00:00
|
|
|
void *private_data; /* should be used with an application */
|
1999-05-02 16:21:30 +00:00
|
|
|
void (*rebuild) (void *private_data);
|
|
|
|
void (*element) (void *private_data, int cmd, snd_mixer_eid_t *eid);
|
|
|
|
void (*group) (void *private_data, int cmd, snd_mixer_gid_t *gid);
|
1999-05-04 19:21:28 +00:00
|
|
|
void *reserved[28]; /* reserved for the future use - must be NULL!!! */
|
1998-08-13 15:42:56 +00:00
|
|
|
} snd_mixer_callbacks_t;
|
1998-11-27 15:06:26 +00:00
|
|
|
|
2000-01-18 08:45:02 +00:00
|
|
|
typedef struct {
|
|
|
|
char *name;
|
|
|
|
int weight;
|
|
|
|
} snd_mixer_weight_entry_t;
|
|
|
|
|
1998-08-13 15:42:56 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1999-06-02 00:40:30 +00:00
|
|
|
typedef struct snd_mixer snd_mixer_t;
|
|
|
|
|
|
|
|
int snd_mixer_open(snd_mixer_t **handle, int card, int device);
|
|
|
|
int snd_mixer_close(snd_mixer_t *handle);
|
|
|
|
int snd_mixer_file_descriptor(snd_mixer_t *handle);
|
|
|
|
int snd_mixer_info(snd_mixer_t *handle, snd_mixer_info_t * info);
|
|
|
|
int snd_mixer_elements(snd_mixer_t *handle, snd_mixer_elements_t * elements);
|
|
|
|
int snd_mixer_routes(snd_mixer_t *handle, snd_mixer_routes_t * routes);
|
|
|
|
int snd_mixer_groups(snd_mixer_t *handle, snd_mixer_groups_t * groups);
|
1999-07-20 22:00:59 +00:00
|
|
|
int snd_mixer_group_read(snd_mixer_t *handle, snd_mixer_group_t * group);
|
|
|
|
int snd_mixer_group_write(snd_mixer_t *handle, snd_mixer_group_t * group);
|
1999-06-02 00:40:30 +00:00
|
|
|
int snd_mixer_element_info(snd_mixer_t *handle, snd_mixer_element_info_t * info);
|
|
|
|
int snd_mixer_element_read(snd_mixer_t *handle, snd_mixer_element_t * element);
|
|
|
|
int snd_mixer_element_write(snd_mixer_t *handle, snd_mixer_element_t * element);
|
1999-11-27 16:33:58 +00:00
|
|
|
int snd_mixer_get_filter(snd_mixer_t *handle, snd_mixer_filter_t * filter);
|
|
|
|
int snd_mixer_put_filter(snd_mixer_t *handle, snd_mixer_filter_t * filter);
|
1999-06-02 00:40:30 +00:00
|
|
|
int snd_mixer_read(snd_mixer_t *handle, snd_mixer_callbacks_t * callbacks);
|
1998-08-13 15:42:56 +00:00
|
|
|
|
1999-05-02 16:21:30 +00:00
|
|
|
void snd_mixer_set_bit(unsigned int *bitmap, int bit, int val);
|
|
|
|
int snd_mixer_get_bit(unsigned int *bitmap, int bit);
|
|
|
|
|
1999-07-22 18:10:19 +00:00
|
|
|
const char *snd_mixer_channel_name(int channel);
|
|
|
|
|
1999-05-02 16:21:30 +00:00
|
|
|
int snd_mixer_element_has_info(snd_mixer_eid_t *eid);
|
1999-06-02 00:40:30 +00:00
|
|
|
int snd_mixer_element_info_build(snd_mixer_t *handle, snd_mixer_element_info_t * info);
|
1999-05-02 16:21:30 +00:00
|
|
|
int snd_mixer_element_info_free(snd_mixer_element_info_t * info);
|
|
|
|
int snd_mixer_element_has_control(snd_mixer_eid_t *eid);
|
1999-06-02 00:40:30 +00:00
|
|
|
int snd_mixer_element_build(snd_mixer_t *handle, snd_mixer_element_t * element);
|
1999-05-02 16:21:30 +00:00
|
|
|
int snd_mixer_element_free(snd_mixer_element_t * element);
|
|
|
|
|
2000-01-18 08:45:02 +00:00
|
|
|
void snd_mixer_sort_eid_name_index(snd_mixer_eid_t *list, int count);
|
|
|
|
void snd_mixer_sort_eid_table(snd_mixer_eid_t *list, int count, snd_mixer_weight_entry_t *table);
|
|
|
|
void snd_mixer_sort_gid_name_index(snd_mixer_gid_t *list, int count);
|
|
|
|
void snd_mixer_sort_gid_table(snd_mixer_gid_t *list, int count, snd_mixer_weight_entry_t *table);
|
2000-01-23 20:23:37 +00:00
|
|
|
extern snd_mixer_weight_entry_t *snd_mixer_default_weights;
|
2000-01-18 08:45:02 +00:00
|
|
|
|
1998-08-13 15:42:56 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|