ALSA project - the C library reference
use-case.h
Go to the documentation of this file.
1 
10 /*
11  *
12  * This library is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU Lesser General Public License as
14  * published by the Free Software Foundation; either version 2.1 of
15  * the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with this library; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25  *
26  * Copyright (C) 2008-2010 SlimLogic Ltd
27  * Copyright (C) 2010 Wolfson Microelectronics PLC
28  * Copyright (C) 2010 Texas Instruments Inc.
29  *
30  * Support for the verb/device/modifier core logic and API,
31  * command line tool and file parser was kindly sponsored by
32  * Texas Instruments Inc.
33  * Support for multiple active modifiers and devices,
34  * transition sequences, multiple client access and user defined use
35  * cases was kindly sponsored by Wolfson Microelectronics PLC.
36  */
37 
38 #ifndef __ALSA_USE_CASE_H
39 #define __ALSA_USE_CASE_H
40 
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44 
45 #include <alsa/asoundlib.h>
46 
93 /*
94  * Use Case Verb.
95  *
96  * The use case verb is the main device audio action. e.g. the "HiFi" use
97  * case verb will configure the audio hardware for HiFi Music playback
98  * and capture.
99  */
100 #define SND_USE_CASE_VERB_INACTIVE "Inactive"
101 #define SND_USE_CASE_VERB_HIFI "HiFi"
102 #define SND_USE_CASE_VERB_HIFI_LOW_POWER "HiFi Low Power"
103 #define SND_USE_CASE_VERB_VOICE "Voice"
104 #define SND_USE_CASE_VERB_VOICE_LOW_POWER "Voice Low Power"
105 #define SND_USE_CASE_VERB_VOICECALL "Voice Call"
106 #define SND_USE_CASE_VERB_IP_VOICECALL "Voice Call IP"
107 #define SND_USE_CASE_VERB_ANALOG_RADIO "FM Analog Radio"
108 #define SND_USE_CASE_VERB_DIGITAL_RADIO "FM Digital Radio"
109 /* add new verbs to end of list */
110 
111 
112 /*
113  * Use Case Device.
114  *
115  * Physical system devices the render and capture audio. Devices can be OR'ed
116  * together to support audio on simultaneous devices.
117  */
118 #define SND_USE_CASE_DEV_NONE "None"
119 #define SND_USE_CASE_DEV_SPEAKER "Speaker"
120 #define SND_USE_CASE_DEV_LINE "Line"
121 #define SND_USE_CASE_DEV_HEADPHONES "Headphones"
122 #define SND_USE_CASE_DEV_HEADSET "Headset"
123 #define SND_USE_CASE_DEV_HANDSET "Handset"
124 #define SND_USE_CASE_DEV_BLUETOOTH "Bluetooth"
125 #define SND_USE_CASE_DEV_EARPIECE "Earpiece"
126 #define SND_USE_CASE_DEV_SPDIF "SPDIF"
127 #define SND_USE_CASE_DEV_HDMI "HDMI"
128 /* add new devices to end of list */
129 
130 
131 /*
132  * Use Case Modifiers.
133  *
134  * The use case modifier allows runtime configuration changes to deal with
135  * asynchronous events.
136  *
137  * e.g. to record a voice call :-
138  * 1. Set verb to SND_USE_CASE_VERB_VOICECALL (for voice call)
139  * 2. Set modifier SND_USE_CASE_MOD_CAPTURE_VOICE when capture required.
140  * 3. Call snd_use_case_get("CapturePCM") to get ALSA source PCM name
141  * with captured voice pcm data.
142  *
143  * e.g. to play a ring tone when listenin to MP3 Music :-
144  * 1. Set verb to SND_USE_CASE_VERB_HIFI (for MP3 playback)
145  * 2. Set modifier to SND_USE_CASE_MOD_PLAY_TONE when incoming call happens.
146  * 3. Call snd_use_case_get("PlaybackPCM") to get ALSA PCM sink name for
147  * ringtone pcm data.
148  */
149 #define SND_USE_CASE_MOD_CAPTURE_VOICE "Capture Voice"
150 #define SND_USE_CASE_MOD_CAPTURE_MUSIC "Capture Music"
151 #define SND_USE_CASE_MOD_PLAY_MUSIC "Play Music"
152 #define SND_USE_CASE_MOD_PLAY_VOICE "Play Voice"
153 #define SND_USE_CASE_MOD_PLAY_TONE "Play Tone"
154 #define SND_USE_CASE_MOD_ECHO_REF "Echo Reference"
155 /* add new modifiers to end of list */
156 
157 
166 #define SND_USE_CASE_TQ_MUSIC "Music"
167 #define SND_USE_CASE_TQ_VOICE "Voice"
168 #define SND_USE_CASE_TQ_TONES "Tones"
171 typedef struct snd_use_case_mgr snd_use_case_mgr_t;
172 
179 char *snd_use_case_identifier(const char *fmt, ...);
180 
187 int snd_use_case_free_list(const char *list[], int items);
188 
218  const char *identifier,
219  const char **list[]);
220 
221 
373  const char *identifier,
374  const char **value);
375 
388  const char *identifier,
389  long *value);
390 
414  const char *identifier,
415  const char *value);
416 
440  const char *card_name);
441 
442 
449 
456 
463 
464 /*
465  * helper functions
466  */
467 
473 static __inline__ int snd_use_case_card_list(const char **list[])
474 {
475  return snd_use_case_get_list(NULL, NULL, list);
476 }
477 
484 static __inline__ int snd_use_case_verb_list(snd_use_case_mgr_t *uc_mgr,
485  const char **list[])
486 {
487  return snd_use_case_get_list(uc_mgr, "_verbs", list);
488 }
489 
498  const char *ucm_id,
499  const char *value);
500 
509  const char *ucm_id,
510  const char *value);
511 
516 #ifdef __cplusplus
517 }
518 #endif
519 
520 #endif /* __ALSA_USE_CASE_H */
snd_use_case_mgr_reset
int snd_use_case_mgr_reset(snd_use_case_mgr_t *uc_mgr)
Reset use case manager verb, device, modifier to deafult settings.
Definition: main.c:1058
snd_use_case_parse_ctl_elem_id
int snd_use_case_parse_ctl_elem_id(snd_ctl_elem_id_t *dst, const char *ucm_id, const char *value)
Parse control element identifier.
Definition: main.c:2082
snd_use_case_free_list
int snd_use_case_free_list(const char *list[], int items)
Free a string list.
Definition: main.c:133
snd_use_case_mgr_t
struct snd_use_case_mgr snd_use_case_mgr_t
Definition: use-case.h:171
snd_mixer_selem_id_t
struct _snd_mixer_selem_id snd_mixer_selem_id_t
Definition: mixer.h:219
snd_use_case_identifier
char * snd_use_case_identifier(const char *fmt,...)
Create an identifier.
Definition: main.c:108
snd_ctl_elem_id_t
struct _snd_ctl_elem_id snd_ctl_elem_id_t
Definition: control.h:57
snd_use_case_mgr_reload
int snd_use_case_mgr_reload(snd_use_case_mgr_t *uc_mgr)
Reload and re-parse use case configuration files for sound card.
Definition: main.c:980
snd_use_case_set
int snd_use_case_set(snd_use_case_mgr_t *uc_mgr, const char *identifier, const char *value)
Set new.
Definition: main.c:2031
snd_use_case_geti
int snd_use_case_geti(snd_use_case_mgr_t *uc_mgr, const char *identifier, long *value)
Get current - integer.
Definition: main.c:1769
snd_use_case_parse_selem_id
int snd_use_case_parse_selem_id(snd_mixer_selem_id_t *dst, const char *ucm_id, const char *value)
Parse mixer element identifier.
Definition: main.c:2114
snd_use_case_mgr_close
int snd_use_case_mgr_close(snd_use_case_mgr_t *uc_mgr)
Close use case manager.
Definition: main.c:1005
snd_use_case_get
int snd_use_case_get(snd_use_case_mgr_t *uc_mgr, const char *identifier, const char **value)
Get current - string.
Definition: main.c:1673
snd_use_case_mgr_open
int snd_use_case_mgr_open(snd_use_case_mgr_t **uc_mgr, const char *card_name)
Open and initialise use case core for sound card.
Definition: main.c:935
snd_use_case_get_list
int snd_use_case_get_list(snd_use_case_mgr_t *uc_mgr, const char *identifier, const char **list[])
Obtain a list of entries.
Definition: main.c:1501