#ifndef E_MOD_MIXER_H #define E_MOD_MIXER_H #include "e.h" typedef void E_Mixer_App; typedef void E_Mixer_System; typedef void E_Mixer_Channel; typedef struct _E_Mixer_Channel_State { int mute; int left; int right; } E_Mixer_Channel_State; typedef struct _E_Mixer_Channel_Info { int has_capture; const char *name; E_Mixer_Channel *id; E_Mixer_App *app; } E_Mixer_Channel_Info; typedef int (*E_Mixer_Volume_Set_Cb)(E_Mixer_System *, E_Mixer_Channel *, int, int); typedef int (*E_Mixer_Volume_Get_Cb)(E_Mixer_System *, E_Mixer_Channel *, int *, int *); typedef int (*E_Mixer_Mute_Get_Cb)(E_Mixer_System *, E_Mixer_Channel *, int *); typedef int (*E_Mixer_Mute_Set_Cb)(E_Mixer_System *, E_Mixer_Channel *, int); typedef int (*E_Mixer_State_Get_Cb)(E_Mixer_System *, E_Mixer_Channel *, E_Mixer_Channel_State *); typedef int (*E_Mixer_Capture_Cb)(E_Mixer_System *, E_Mixer_Channel *); typedef void *(*E_Mixer_Cb)(); extern Eina_Bool _mixer_using_default; extern E_Mixer_Volume_Get_Cb e_mod_mixer_volume_get; extern E_Mixer_Volume_Set_Cb e_mod_mixer_volume_set; extern E_Mixer_Mute_Get_Cb e_mod_mixer_mute_get; extern E_Mixer_Mute_Set_Cb e_mod_mixer_mute_set; extern E_Mixer_Capture_Cb e_mod_mixer_mutable_get; extern E_Mixer_State_Get_Cb e_mod_mixer_state_get; extern E_Mixer_Capture_Cb e_mod_mixer_capture_get; extern E_Mixer_Cb e_mod_mixer_new; extern E_Mixer_Cb e_mod_mixer_del; extern E_Mixer_Cb e_mod_mixer_channel_default_name_get; extern E_Mixer_Cb e_mod_mixer_channel_get_by_name; extern E_Mixer_Cb e_mod_mixer_channel_name_get; extern E_Mixer_Cb e_mod_mixer_channel_del; extern E_Mixer_Cb e_mod_mixer_channel_free; extern E_Mixer_Cb e_mod_mixer_channels_names_get; extern E_Mixer_Cb e_mod_mixer_card_name_get; extern E_Mixer_Cb e_mod_mixer_cards_get; extern E_Mixer_Cb e_mod_mixer_cards_free; extern E_Mixer_Cb e_mod_mixer_card_default_get; Eina_List *e_mod_mixer_channels_info_get(E_Mixer_System *sys); void e_mod_mixer_channels_info_free(Eina_List*); void e_mod_mixer_channels_names_free(Eina_List*); void e_mixer_default_setup(void); void e_mixer_pulse_setup(); /* ALSA */ int e_mixer_system_callback_set(E_Mixer_System *self, int (*func)(void *data, E_Mixer_System *self), void *data); E_Mixer_System *e_mixer_system_new(const char *card); void e_mixer_system_del(E_Mixer_System *self); Eina_List *e_mixer_system_get_cards(void); void e_mixer_system_free_cards(Eina_List *cards); const char *e_mixer_system_get_default_card(void); const char *e_mixer_system_get_card_name(const char *card); const char *e_mixer_system_get_channel_name(E_Mixer_System *self, E_Mixer_Channel *channel); Eina_List *e_mixer_system_get_channels(E_Mixer_System *self); Eina_List *e_mixer_system_get_channels_names(E_Mixer_System *self); const char *e_mixer_system_get_default_channel_name(E_Mixer_System *self); E_Mixer_Channel *e_mixer_system_get_channel_by_name(E_Mixer_System *self, const char *name); void e_mixer_system_channel_del(E_Mixer_Channel *channel); int e_mixer_system_has_capture(E_Mixer_System *self, E_Mixer_Channel *channel); int e_mixer_system_get_volume(E_Mixer_System *self, E_Mixer_Channel *channel, int *left, int *right); int e_mixer_system_set_volume(E_Mixer_System *self, E_Mixer_Channel *channel, int left, int right); int e_mixer_system_can_mute(E_Mixer_System *self, E_Mixer_Channel *channel); int e_mixer_system_get_mute(E_Mixer_System *self, E_Mixer_Channel *channel, int *mute); int e_mixer_system_set_mute(E_Mixer_System *self, E_Mixer_Channel *channel, int mute); int e_mixer_system_get_state(E_Mixer_System *self, E_Mixer_Channel *channel, E_Mixer_Channel_State *state); int e_mixer_system_set_state(E_Mixer_System *self, E_Mixer_Channel *channel, const E_Mixer_Channel_State *state); /* PULSE */ int pulse_init(void); Eina_Bool e_mixer_pulse_ready(void); Eina_Bool e_mixer_pulse_init(void); void e_mixer_pulse_shutdown(void); E_Mixer_System *e_mixer_pulse_new(const char *name); void e_mixer_pulse_del(E_Mixer_System *self); Eina_List *e_mixer_pulse_get_cards(void); void e_mixer_pulse_free_cards(Eina_List *cards); const char *e_mixer_pulse_get_default_card(void); const char *e_mixer_pulse_get_card_name(const char *card); const char *e_mixer_pulse_get_channel_name(E_Mixer_System *self, E_Mixer_Channel *channel); Eina_List *e_mixer_pulse_get_channels(E_Mixer_System *self); Eina_List *e_mixer_pulse_get_channels_names(E_Mixer_System *self); const char *e_mixer_pulse_get_default_channel_name(E_Mixer_System *self); E_Mixer_Channel *e_mixer_pulse_get_channel_by_name(E_Mixer_System *self, const char *name); void e_mixer_pulse_channel_del(E_Mixer_Channel *channel); int e_mixer_pulse_has_capture(E_Mixer_System *self, E_Mixer_Channel *channel); int e_mixer_pulse_get_volume(E_Mixer_System *self, E_Mixer_Channel *channel, int *left, int *right); int e_mixer_pulse_set_volume(E_Mixer_System *self, E_Mixer_Channel *channel, int left, int right); int e_mixer_pulse_can_mute(E_Mixer_System *self, E_Mixer_Channel *channel); int e_mixer_pulse_get_mute(E_Mixer_System *self, E_Mixer_Channel *channel, int *mute); int e_mixer_pulse_set_mute(E_Mixer_System *self, E_Mixer_Channel *channel, int mute); int e_mixer_pulse_get_state(E_Mixer_System *self, E_Mixer_Channel *channel, E_Mixer_Channel_State *state); int e_mixer_pulse_set_state(E_Mixer_System *self, E_Mixer_Channel *channel, const E_Mixer_Channel_State *state); /** * @addtogroup Optional_Devices * @{ * * @defgroup Module_Mixer Audio Mixer (Volume Control) * * Controls the audio volume and mute status for both playback * (output) and record (input) devices. * * Can work with ALSA (http://www.alsa-project.org/) or PulseAudio * (http://www.pulseaudio.org/). * * @} */ #endif /* E_MOD_SYSTEM_H */