/system/media/audio_route/include/audio_route/ |
audio_route.h | 25 struct audio_route *audio_route_init(unsigned int card, const char *xml_path); 26 void audio_route_free(struct audio_route *ar); 29 int audio_route_apply_path(struct audio_route *ar, const char *name); 32 int audio_route_reset_path(struct audio_route *ar, const char *name); 35 void audio_route_reset(struct audio_route *ar); 38 int audio_route_update_mixer(struct audio_route *ar);
|
/system/media/audio_route/ |
Android.mk | 7 LOCAL_SRC_FILES:= audio_route.c
|
audio_route.c | 18 #define LOG_TAG "audio_route" 62 struct audio_route { struct 73 struct audio_route *ar; 92 static inline struct mixer_ctl *index_to_ctl(struct audio_route *ar, 98 static void path_print(struct audio_route *ar, struct mixer_path *path) 113 static void path_free(struct audio_route *ar) 129 static struct mixer_path *path_get_by_name(struct audio_route *ar, 141 static struct mixer_path *path_create(struct audio_route *ar, const char *name) 217 static int path_add_setting(struct audio_route *ar, struct mixer_path *path, 244 static int path_add_value(struct audio_route *ar, struct mixer_path *path [all...] |
/hardware/qcom/audio/hal/ |
audio_hw.h | 26 #include <audio_route/audio_route.h> 189 struct audio_route *audio_route; member in struct:audio_device
|
audio_hw.c | 178 audio_route_apply_path(adev->audio_route, mixer_path); 180 audio_route_update_mixer(adev->audio_route); 204 audio_route_reset_path(adev->audio_route, mixer_path); 206 audio_route_update_mixer(adev->audio_route); 236 audio_route_apply_path(adev->audio_route, platform_get_snd_device_name(snd_device)); 238 audio_route_update_mixer(adev->audio_route); 260 audio_route_reset_path(adev->audio_route, platform_get_snd_device_name(snd_device)); 262 audio_route_update_mixer(adev->audio_route); 308 audio_route_update_mixer(adev->audio_route); 325 audio_route_update_mixer(adev->audio_route); [all...] |
/build/core/ |
pathmap.mk | 52 audio-route:system/media/audio_route/include \
|
/device/asus/grouper/audio/ |
audio_hw.c | 38 #include <audio_route/audio_route.h> 105 struct audio_route *ar; [all...] |
/hardware/qcom/audio/hal/msm8960/ |
platform.c | 262 adev->audio_route = audio_route_init(MIXER_CARD, MIXER_XML_PATH); 263 if (!adev->audio_route) { [all...] |
/hardware/qcom/audio/hal/msm8974/ |
platform.c | 283 adev->audio_route = audio_route_init(MIXER_CARD, MIXER_XML_PATH); 284 if (!adev->audio_route) {
|
/device/samsung/manta/audio/ |
audio_hw.c | 42 #include <audio_route/audio_route.h> 128 struct audio_route *ar; [all...] |