blob: 44b9fc8ee61f0a504420df61efd5682834f2e875 [file] [log] [blame]
Brian Swetland2aec4392009-09-01 18:52:58 -07001/*
2 * Copyright (C) 2009 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#include <stdint.h>
19#include <sys/types.h>
Jean-Michel Trivi195d08b2009-10-09 15:48:36 -070020#include <utils/Timers.h>
Brian Swetland2aec4392009-09-01 18:52:58 -070021#include <utils/Errors.h>
22#include <utils/KeyedVector.h>
Eric Laurent59ba5f12009-12-10 01:05:32 -080023#include <hardware_legacy/AudioPolicyManagerBase.h>
Brian Swetland2aec4392009-09-01 18:52:58 -070024
25
26namespace android {
27
28// ----------------------------------------------------------------------------
29
Eric Laurent59ba5f12009-12-10 01:05:32 -080030class AudioPolicyManager: public AudioPolicyManagerBase
Brian Swetland2aec4392009-09-01 18:52:58 -070031{
32
33public:
Eric Laurent59ba5f12009-12-10 01:05:32 -080034 AudioPolicyManager(AudioPolicyClientInterface *clientInterface)
35 : AudioPolicyManagerBase(clientInterface) {}
Brian Swetland2aec4392009-09-01 18:52:58 -070036
Eric Laurent59ba5f12009-12-10 01:05:32 -080037 virtual ~AudioPolicyManager() {}
Brian Swetland2aec4392009-09-01 18:52:58 -070038
Eric Laurent59ba5f12009-12-10 01:05:32 -080039protected:
Eric Laurent63e2c0a2009-11-03 09:18:39 -080040
Eric Laurent59ba5f12009-12-10 01:05:32 -080041 // true is current platform implements a back microphone
42 virtual bool hasBackMicrophone() const { return true; }
Brian Swetland2aec4392009-09-01 18:52:58 -070043
Eric Laurent59ba5f12009-12-10 01:05:32 -080044#ifdef WITH_A2DP
45 // true is current platform supports suplication of notifications and ringtones over A2DP output
46 virtual bool a2dpUsedForSonification() const { return true; }
47#endif
Brian Swetland2aec4392009-09-01 18:52:58 -070048
Brian Swetland2aec4392009-09-01 18:52:58 -070049 // return appropriate device for streams handled by the specified strategy according to current
50 // phone state, connected devices...
Eric Laurent59ba5f12009-12-10 01:05:32 -080051 virtual uint32_t getDeviceForStrategy(routing_strategy strategy, bool fromCache = true);
Eric Laurent0cde1c52010-02-16 06:11:46 -080052 virtual float computeVolume(int stream, int index, audio_io_handle_t output, uint32_t device);
Brian Swetland2aec4392009-09-01 18:52:58 -070053};
54
55};