blob: 71c8f92803d8c837c62caf2943e45a3f08c80948 [file] [log] [blame]
Dima Zavin8cc353a2011-04-20 16:38:05 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "audio_policy_default"
18//#define LOG_NDEBUG 0
19
20#include <errno.h>
21#include <stdint.h>
22#include <stdlib.h>
23#include <string.h>
24
25#include <hardware/hardware.h>
Dima Zavinaa211722011-05-11 14:15:53 -070026#include <system/audio.h>
Dima Zavin11998652011-06-13 18:00:30 -070027#include <system/audio_policy.h>
Dima Zavin3bc15862011-06-13 17:59:54 -070028#include <hardware/audio_policy.h>
Dima Zavin8cc353a2011-04-20 16:38:05 -070029
30struct default_ap_module {
31 struct audio_policy_module module;
32};
33
34struct default_ap_device {
35 struct audio_policy_device device;
36};
37
38struct default_audio_policy {
39 struct audio_policy policy;
40
41 struct audio_policy_service_ops *aps_ops;
42 void *service;
43};
44
45static int ap_set_device_connection_state(struct audio_policy *pol,
46 audio_devices_t device,
47 audio_policy_dev_state_t state,
48 const char *device_address)
49{
50 return -ENOSYS;
51}
52
53static audio_policy_dev_state_t ap_get_device_connection_state(
54 const struct audio_policy *pol,
55 audio_devices_t device,
56 const char *device_address)
57{
58 return AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE;
59}
60
61static void ap_set_phone_state(struct audio_policy *pol, int state)
62{
63}
64
65static void ap_set_ringer_mode(struct audio_policy *pol, uint32_t mode,
66 uint32_t mask)
67{
68}
69
70static void ap_set_force_use(struct audio_policy *pol,
71 audio_policy_force_use_t usage,
72 audio_policy_forced_cfg_t config)
73{
74}
75
76 /* retreive current device category forced for a given usage */
77static audio_policy_forced_cfg_t ap_get_force_use(
78 const struct audio_policy *pol,
79 audio_policy_force_use_t usage)
80{
81 return AUDIO_POLICY_FORCE_NONE;
82}
83
84/* if can_mute is true, then audio streams that are marked ENFORCED_AUDIBLE
85 * can still be muted. */
86static void ap_set_can_mute_enforced_audible(struct audio_policy *pol,
87 bool can_mute)
88{
89}
90
91static int ap_init_check(const struct audio_policy *pol)
92{
93 return 0;
94}
95
96static audio_io_handle_t ap_get_output(struct audio_policy *pol,
97 audio_stream_type_t stream,
98 uint32_t sampling_rate,
99 uint32_t format,
100 uint32_t channels,
101 audio_policy_output_flags_t flags)
102{
103 return 0;
104}
105
106static int ap_start_output(struct audio_policy *pol, audio_io_handle_t output,
107 audio_stream_type_t stream, int session)
108{
109 return -ENOSYS;
110}
111
112static int ap_stop_output(struct audio_policy *pol, audio_io_handle_t output,
113 audio_stream_type_t stream, int session)
114{
115 return -ENOSYS;
116}
117
118static void ap_release_output(struct audio_policy *pol,
119 audio_io_handle_t output)
120{
121}
122
123static audio_io_handle_t ap_get_input(struct audio_policy *pol, int inputSource,
124 uint32_t sampling_rate,
125 uint32_t format,
126 uint32_t channels,
127 audio_in_acoustics_t acoustics)
128{
129 return 0;
130}
131
132static int ap_start_input(struct audio_policy *pol, audio_io_handle_t input)
133{
134 return -ENOSYS;
135}
136
137static int ap_stop_input(struct audio_policy *pol, audio_io_handle_t input)
138{
139 return -ENOSYS;
140}
141
142static void ap_release_input(struct audio_policy *pol, audio_io_handle_t input)
143{
144}
145
146static void ap_init_stream_volume(struct audio_policy *pol,
147 audio_stream_type_t stream, int index_min,
148 int index_max)
149{
150}
151
152static int ap_set_stream_volume_index(struct audio_policy *pol,
153 audio_stream_type_t stream,
154 int index)
155{
156 return -ENOSYS;
157}
158
159static int ap_get_stream_volume_index(const struct audio_policy *pol,
160 audio_stream_type_t stream,
161 int *index)
162{
163 return -ENOSYS;
164}
165
Eric Laurentca20b172011-12-09 17:10:40 -0800166static int ap_set_stream_volume_index_for_device(struct audio_policy *pol,
167 audio_stream_type_t stream,
168 int index,
169 audio_devices_t device)
170{
171 return -ENOSYS;
172}
173
174static int ap_get_stream_volume_index_for_device(const struct audio_policy *pol,
175 audio_stream_type_t stream,
176 int *index,
177 audio_devices_t device)
178{
179 return -ENOSYS;
180}
181
Dima Zavin8cc353a2011-04-20 16:38:05 -0700182static uint32_t ap_get_strategy_for_stream(const struct audio_policy *pol,
183 audio_stream_type_t stream)
184{
185 return 0;
186}
187
188static uint32_t ap_get_devices_for_stream(const struct audio_policy *pol,
189 audio_stream_type_t stream)
190{
191 return 0;
192}
193
194static audio_io_handle_t ap_get_output_for_effect(struct audio_policy *pol,
195 struct effect_descriptor_s *desc)
196{
197 return 0;
198}
199
200static int ap_register_effect(struct audio_policy *pol,
201 struct effect_descriptor_s *desc,
202 audio_io_handle_t output,
203 uint32_t strategy,
204 int session,
205 int id)
206{
207 return -ENOSYS;
208}
209
210static int ap_unregister_effect(struct audio_policy *pol, int id)
211{
212 return -ENOSYS;
213}
214
Eric Laurent78d2c692011-08-10 20:15:48 -0700215static int ap_set_effect_enabled(struct audio_policy *pol, int id, bool enabled)
216{
217 return -ENOSYS;
218}
219
Glenn Kasten5161a842012-01-12 14:56:21 -0800220static bool ap_is_stream_active(const struct audio_policy *pol, audio_stream_type_t stream,
Dima Zavin8cc353a2011-04-20 16:38:05 -0700221 uint32_t in_past_ms)
222{
223 return false;
224}
225
226static int ap_dump(const struct audio_policy *pol, int fd)
227{
228 return -ENOSYS;
229}
230
231static int create_default_ap(const struct audio_policy_device *device,
232 struct audio_policy_service_ops *aps_ops,
233 void *service,
234 struct audio_policy **ap)
235{
236 struct default_ap_device *dev;
237 struct default_audio_policy *dap;
238 int ret;
239
240 *ap = NULL;
241
242 if (!service || !aps_ops)
243 return -EINVAL;
244
245 dap = (struct default_audio_policy *)calloc(1, sizeof(*dap));
246 if (!dap)
247 return -ENOMEM;
248
249 dap->policy.set_device_connection_state = ap_set_device_connection_state;
250 dap->policy.get_device_connection_state = ap_get_device_connection_state;
251 dap->policy.set_phone_state = ap_set_phone_state;
252 dap->policy.set_ringer_mode = ap_set_ringer_mode;
253 dap->policy.set_force_use = ap_set_force_use;
254 dap->policy.get_force_use = ap_get_force_use;
255 dap->policy.set_can_mute_enforced_audible =
256 ap_set_can_mute_enforced_audible;
257 dap->policy.init_check = ap_init_check;
258 dap->policy.get_output = ap_get_output;
259 dap->policy.start_output = ap_start_output;
260 dap->policy.stop_output = ap_stop_output;
261 dap->policy.release_output = ap_release_output;
262 dap->policy.get_input = ap_get_input;
263 dap->policy.start_input = ap_start_input;
264 dap->policy.stop_input = ap_stop_input;
265 dap->policy.release_input = ap_release_input;
266 dap->policy.init_stream_volume = ap_init_stream_volume;
267 dap->policy.set_stream_volume_index = ap_set_stream_volume_index;
268 dap->policy.get_stream_volume_index = ap_get_stream_volume_index;
Eric Laurentca20b172011-12-09 17:10:40 -0800269 dap->policy.set_stream_volume_index_for_device = ap_set_stream_volume_index_for_device;
270 dap->policy.get_stream_volume_index_for_device = ap_get_stream_volume_index_for_device;
Dima Zavin8cc353a2011-04-20 16:38:05 -0700271 dap->policy.get_strategy_for_stream = ap_get_strategy_for_stream;
272 dap->policy.get_devices_for_stream = ap_get_devices_for_stream;
273 dap->policy.get_output_for_effect = ap_get_output_for_effect;
274 dap->policy.register_effect = ap_register_effect;
275 dap->policy.unregister_effect = ap_unregister_effect;
Eric Laurent78d2c692011-08-10 20:15:48 -0700276 dap->policy.set_effect_enabled = ap_set_effect_enabled;
Dima Zavin8cc353a2011-04-20 16:38:05 -0700277 dap->policy.is_stream_active = ap_is_stream_active;
278 dap->policy.dump = ap_dump;
279
280 dap->service = service;
281 dap->aps_ops = aps_ops;
282
283 *ap = &dap->policy;
284 return 0;
285}
286
287static int destroy_default_ap(const struct audio_policy_device *ap_dev,
288 struct audio_policy *ap)
289{
290 free(ap);
291 return 0;
292}
293
294static int default_ap_dev_close(hw_device_t* device)
295{
296 free(device);
297 return 0;
298}
299
300static int default_ap_dev_open(const hw_module_t* module, const char* name,
301 hw_device_t** device)
302{
303 struct default_ap_device *dev;
304
305 *device = NULL;
306
307 if (strcmp(name, AUDIO_POLICY_INTERFACE) != 0)
308 return -EINVAL;
309
310 dev = (struct default_ap_device *)calloc(1, sizeof(*dev));
311 if (!dev)
312 return -ENOMEM;
313
314 dev->device.common.tag = HARDWARE_DEVICE_TAG;
315 dev->device.common.version = 0;
316 dev->device.common.module = (hw_module_t *)module;
317 dev->device.common.close = default_ap_dev_close;
318 dev->device.create_audio_policy = create_default_ap;
319 dev->device.destroy_audio_policy = destroy_default_ap;
320
321 *device = &dev->device.common;
322
323 return 0;
324}
325
326static struct hw_module_methods_t default_ap_module_methods = {
327 .open = default_ap_dev_open,
328};
329
330struct default_ap_module HAL_MODULE_INFO_SYM = {
331 .module = {
332 .common = {
333 .tag = HARDWARE_MODULE_TAG,
334 .version_major = 1,
335 .version_minor = 0,
336 .id = AUDIO_POLICY_HARDWARE_MODULE_ID,
337 .name = "Default audio policy HAL",
338 .author = "The Android Open Source Project",
339 .methods = &default_ap_module_methods,
340 },
341 },
342};