blob: eb614725233664d3dbe3aa882cd7348713f64db7 [file] [log] [blame]
Nate Jiang7a7fd842022-12-06 17:11:13 -08001/*
2 * Copyright (C) 2007 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#ifndef ANDROID_AUDIO_HARDWARE_BASE_H
18#define ANDROID_AUDIO_HARDWARE_BASE_H
19
20#include <hardware_legacy/AudioHardwareInterface.h>
21
22#include <system/audio.h>
23
24namespace android_audio_legacy {
25
26// ----------------------------------------------------------------------------
27
28/**
29 * AudioHardwareBase is a convenient base class used for implementing the
30 * AudioHardwareInterface interface.
31 */
32class AudioHardwareBase : public AudioHardwareInterface {
33 public:
34 AudioHardwareBase();
35 virtual ~AudioHardwareBase() {}
36
37 /**
38 * setMode is called when the audio mode changes. NORMAL mode is for
39 * standard audio playback, RINGTONE when a ringtone is playing, IN_CALL
40 * when a telephony call is in progress, IN_COMMUNICATION when a VoIP call is in progress.
41 */
42 virtual status_t setMode(int mode);
43
44 virtual status_t setParameters(const String8& keyValuePairs);
45 virtual String8 getParameters(const String8& keys);
46
47 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount);
48 virtual status_t getMasterVolume(float* volume);
49
50 /**This method dumps the state of the audio hardware */
51 virtual status_t dumpState(int fd, const Vector<String16>& args);
52
53 protected:
54 /** returns true if the given mode maps to a telephony or VoIP call is in progress */
55 virtual bool isModeInCall(int mode) {
56 return ((mode == AudioSystem::MODE_IN_CALL) ||
57 (mode == AudioSystem::MODE_IN_COMMUNICATION));
58 };
59 /** returns true if a telephony or VoIP call is in progress */
60 virtual bool isInCall() { return isModeInCall(mMode); };
61 int mMode;
62};
63
64}; // namespace android_audio_legacy
65
66#endif // ANDROID_AUDIO_HARDWARE_BASE_H