blob: 6b49a80af741310d96384bcdec3c26692e35abd9 [file] [log] [blame]
Dima Zavin28e08dc2011-06-13 17:54:33 -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
18#ifndef ANDROID_AUDIO_POLICY_CORE_H
19#define ANDROID_AUDIO_POLICY_CORE_H
20
21#include <stdint.h>
22#include <sys/cdefs.h>
23#include <sys/types.h>
24
25#include <cutils/bitops.h>
26
27__BEGIN_DECLS
28
29/* The enums were moved here mostly from
30 * frameworks/base/include/media/AudioSystem.h
31 */
32
Dima Zavin28e08dc2011-06-13 17:54:33 -070033/* device categories used for audio_policy->set_force_use() */
34typedef enum {
35 AUDIO_POLICY_FORCE_NONE,
36 AUDIO_POLICY_FORCE_SPEAKER,
37 AUDIO_POLICY_FORCE_HEADPHONES,
38 AUDIO_POLICY_FORCE_BT_SCO,
39 AUDIO_POLICY_FORCE_BT_A2DP,
40 AUDIO_POLICY_FORCE_WIRED_ACCESSORY,
41 AUDIO_POLICY_FORCE_BT_CAR_DOCK,
42 AUDIO_POLICY_FORCE_BT_DESK_DOCK,
43 AUDIO_POLICY_FORCE_ANALOG_DOCK,
44 AUDIO_POLICY_FORCE_DIGITAL_DOCK,
Eric Laurent88f11842012-05-21 08:55:30 -070045 AUDIO_POLICY_FORCE_NO_BT_A2DP, /* A2DP sink is not preferred to speaker or wired HS */
Jean-Michel Trivie11866a2012-08-16 17:53:30 -070046 AUDIO_POLICY_FORCE_REMOTE_SUBMIX,
Eric Laurent4daa8432012-10-08 15:46:44 -070047 AUDIO_POLICY_FORCE_SYSTEM_ENFORCED,
Dima Zavin28e08dc2011-06-13 17:54:33 -070048
49 AUDIO_POLICY_FORCE_CFG_CNT,
50 AUDIO_POLICY_FORCE_CFG_MAX = AUDIO_POLICY_FORCE_CFG_CNT - 1,
51
52 AUDIO_POLICY_FORCE_DEFAULT = AUDIO_POLICY_FORCE_NONE,
53} audio_policy_forced_cfg_t;
54
55/* usages used for audio_policy->set_force_use() */
56typedef enum {
57 AUDIO_POLICY_FORCE_FOR_COMMUNICATION,
58 AUDIO_POLICY_FORCE_FOR_MEDIA,
59 AUDIO_POLICY_FORCE_FOR_RECORD,
60 AUDIO_POLICY_FORCE_FOR_DOCK,
Eric Laurent4daa8432012-10-08 15:46:44 -070061 AUDIO_POLICY_FORCE_FOR_SYSTEM,
Dima Zavin28e08dc2011-06-13 17:54:33 -070062
63 AUDIO_POLICY_FORCE_USE_CNT,
64 AUDIO_POLICY_FORCE_USE_MAX = AUDIO_POLICY_FORCE_USE_CNT - 1,
65} audio_policy_force_use_t;
66
67/* device connection states used for audio_policy->set_device_connection_state()
68 */
69typedef enum {
70 AUDIO_POLICY_DEVICE_STATE_UNAVAILABLE,
71 AUDIO_POLICY_DEVICE_STATE_AVAILABLE,
72
73 AUDIO_POLICY_DEVICE_STATE_CNT,
74 AUDIO_POLICY_DEVICE_STATE_MAX = AUDIO_POLICY_DEVICE_STATE_CNT - 1,
75} audio_policy_dev_state_t;
76
77typedef enum {
78 /* Used to generate a tone to notify the user of a
79 * notification/alarm/ringtone while they are in a call. */
80 AUDIO_POLICY_TONE_IN_CALL_NOTIFICATION = 0,
81
82 AUDIO_POLICY_TONE_CNT,
83 AUDIO_POLICY_TONE_MAX = AUDIO_POLICY_TONE_CNT - 1,
84} audio_policy_tone_t;
85
86
87static inline bool audio_is_low_visibility(audio_stream_type_t stream)
88{
89 switch (stream) {
90 case AUDIO_STREAM_SYSTEM:
91 case AUDIO_STREAM_NOTIFICATION:
92 case AUDIO_STREAM_RING:
93 return true;
94 default:
95 return false;
96 }
97}
98
99
100__END_DECLS
101
102#endif // ANDROID_AUDIO_POLICY_CORE_H