00001
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef __ALSA_USE_CASE_H
00039 #define __ALSA_USE_CASE_H
00040
00041 #ifdef __cplusplus
00042 extern "C" {
00043 #endif
00044
00091
00092
00093
00094
00095
00096
00097
00098 #define SND_USE_CASE_VERB_INACTIVE "Inactive"
00099 #define SND_USE_CASE_VERB_HIFI "HiFi"
00100 #define SND_USE_CASE_VERB_HIFI_LOW_POWER "HiFi Low Power"
00101 #define SND_USE_CASE_VERB_VOICE "Voice"
00102 #define SND_USE_CASE_VERB_VOICE_LOW_POWER "Voice Low Power"
00103 #define SND_USE_CASE_VERB_VOICECALL "Voice Call"
00104 #define SND_USE_CASE_VERB_IP_VOICECALL "Voice Call IP"
00105 #define SND_USE_CASE_VERB_ANALOG_RADIO "FM Analog Radio"
00106 #define SND_USE_CASE_VERB_DIGITAL_RADIO "FM Digital Radio"
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116 #define SND_USE_CASE_DEV_NONE "None"
00117 #define SND_USE_CASE_DEV_SPEAKER "Speaker"
00118 #define SND_USE_CASE_DEV_LINE "Line"
00119 #define SND_USE_CASE_DEV_HEADPHONES "Headphones"
00120 #define SND_USE_CASE_DEV_HEADSET "Headset"
00121 #define SND_USE_CASE_DEV_HANDSET "Handset"
00122 #define SND_USE_CASE_DEV_BLUETOOTH "Bluetooth"
00123 #define SND_USE_CASE_DEV_EARPIECE "Earpiece"
00124 #define SND_USE_CASE_DEV_SPDIF "SPDIF"
00125 #define SND_USE_CASE_DEV_HDMI "HDMI"
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147 #define SND_USE_CASE_MOD_CAPTURE_VOICE "Capture Voice"
00148 #define SND_USE_CASE_MOD_CAPTURE_MUSIC "Capture Music"
00149 #define SND_USE_CASE_MOD_PLAY_MUSIC "Play Music"
00150 #define SND_USE_CASE_MOD_PLAY_VOICE "Play Voice"
00151 #define SND_USE_CASE_MOD_PLAY_TONE "Play Tone"
00152 #define SND_USE_CASE_MOD_ECHO_REF "Echo Reference"
00153
00154
00155
00164 #define SND_USE_CASE_TQ_MUSIC "Music"
00165 #define SND_USE_CASE_TQ_VOICE "Voice"
00166 #define SND_USE_CASE_TQ_TONES "Tones"
00169 typedef struct snd_use_case_mgr snd_use_case_mgr_t;
00170
00177 char *snd_use_case_identifier(const char *fmt, ...);
00178
00185 int snd_use_case_free_list(const char *list[], int items);
00186
00213 int snd_use_case_get_list(snd_use_case_mgr_t *uc_mgr,
00214 const char *identifier,
00215 const char **list[]);
00216
00217
00322 int snd_use_case_get(snd_use_case_mgr_t *uc_mgr,
00323 const char *identifier,
00324 const char **value);
00325
00337 int snd_use_case_geti(snd_use_case_mgr_t *uc_mgr,
00338 const char *identifier,
00339 long *value);
00340
00363 int snd_use_case_set(snd_use_case_mgr_t *uc_mgr,
00364 const char *identifier,
00365 const char *value);
00366
00373 int snd_use_case_mgr_open(snd_use_case_mgr_t **uc_mgr, const char *card_name);
00374
00375
00381 int snd_use_case_mgr_reload(snd_use_case_mgr_t *uc_mgr);
00382
00388 int snd_use_case_mgr_close(snd_use_case_mgr_t *uc_mgr);
00389
00395 int snd_use_case_mgr_reset(snd_use_case_mgr_t *uc_mgr);
00396
00397
00398
00399
00400
00406 static __inline__ int snd_use_case_card_list(const char **list[])
00407 {
00408 return snd_use_case_get_list(NULL, NULL, list);
00409 }
00410
00417 static __inline__ int snd_use_case_verb_list(snd_use_case_mgr_t *uc_mgr,
00418 const char **list[])
00419 {
00420 return snd_use_case_get_list(uc_mgr, "_verbs", list);
00421 }
00422
00427 #ifdef __cplusplus
00428 }
00429 #endif
00430
00431 #endif