blob: 589f7cd28a86ca8987f92861ac14311b13e26d7e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -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_IAUDIOFLINGER_H
18#define ANDROID_IAUDIOFLINGER_H
19
20#include <stdint.h>
21#include <sys/types.h>
22#include <unistd.h>
23
24#include <utils/RefBase.h>
25#include <utils/Errors.h>
Mathias Agopian07952722009-05-19 19:08:10 -070026#include <binder/IInterface.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027#include <media/IAudioTrack.h>
28#include <media/IAudioRecord.h>
29#include <media/IAudioFlingerClient.h>
Eric Laurent65b65452010-06-01 23:49:17 -070030#include <media/EffectApi.h>
31#include <media/IEffect.h>
32#include <media/IEffectClient.h>
Eric Laurenta553c252009-07-17 12:17:14 -070033#include <utils/String8.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034
35namespace android {
36
37// ----------------------------------------------------------------------------
38
39class IAudioFlinger : public IInterface
40{
41public:
42 DECLARE_META_INTERFACE(AudioFlinger);
43
44 /* create an audio track and registers it with AudioFlinger.
45 * return null if the track cannot be created.
46 */
47 virtual sp<IAudioTrack> createTrack(
48 pid_t pid,
49 int streamType,
50 uint32_t sampleRate,
51 int format,
52 int channelCount,
53 int frameCount,
54 uint32_t flags,
55 const sp<IMemory>& sharedBuffer,
Eric Laurentddb78e72009-07-28 08:44:33 -070056 int output,
Eric Laurent65b65452010-06-01 23:49:17 -070057 int *sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 status_t *status) = 0;
59
60 virtual sp<IAudioRecord> openRecord(
61 pid_t pid,
Eric Laurentddb78e72009-07-28 08:44:33 -070062 int input,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 uint32_t sampleRate,
64 int format,
65 int channelCount,
66 int frameCount,
67 uint32_t flags,
Eric Laurent65b65452010-06-01 23:49:17 -070068 int *sessionId,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 status_t *status) = 0;
70
71 /* query the audio hardware state. This state never changes,
72 * and therefore can be cached.
73 */
Eric Laurentddb78e72009-07-28 08:44:33 -070074 virtual uint32_t sampleRate(int output) const = 0;
75 virtual int channelCount(int output) const = 0;
76 virtual int format(int output) const = 0;
77 virtual size_t frameCount(int output) const = 0;
78 virtual uint32_t latency(int output) const = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079
80 /* set/get the audio hardware state. This will probably be used by
81 * the preference panel, mostly.
82 */
83 virtual status_t setMasterVolume(float value) = 0;
84 virtual status_t setMasterMute(bool muted) = 0;
85
86 virtual float masterVolume() const = 0;
87 virtual bool masterMute() const = 0;
88
89 /* set/get stream type state. This will probably be used by
90 * the preference panel, mostly.
91 */
Eric Laurentddb78e72009-07-28 08:44:33 -070092 virtual status_t setStreamVolume(int stream, float value, int output) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 virtual status_t setStreamMute(int stream, bool muted) = 0;
94
Eric Laurentddb78e72009-07-28 08:44:33 -070095 virtual float streamVolume(int stream, int output) const = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 virtual bool streamMute(int stream) const = 0;
97
Eric Laurenta553c252009-07-17 12:17:14 -070098 // set audio mode
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 virtual status_t setMode(int mode) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100
101 // mic mute/state
102 virtual status_t setMicMute(bool state) = 0;
103 virtual bool getMicMute() const = 0;
104
Eric Laurentddb78e72009-07-28 08:44:33 -0700105 virtual status_t setParameters(int ioHandle, const String8& keyValuePairs) = 0;
106 virtual String8 getParameters(int ioHandle, const String8& keys) = 0;
Eric Laurent415f3e22009-10-21 08:14:22 -0700107
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 // register a current process for audio output change notifications
109 virtual void registerClient(const sp<IAudioFlingerClient>& client) = 0;
Eric Laurent415f3e22009-10-21 08:14:22 -0700110
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 // retrieve the audio recording buffer size
112 virtual size_t getInputBufferSize(uint32_t sampleRate, int format, int channelCount) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113
Eric Laurentddb78e72009-07-28 08:44:33 -0700114 virtual int openOutput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700115 uint32_t *pSamplingRate,
116 uint32_t *pFormat,
117 uint32_t *pChannels,
118 uint32_t *pLatencyMs,
119 uint32_t flags) = 0;
Eric Laurentddb78e72009-07-28 08:44:33 -0700120 virtual int openDuplicateOutput(int output1, int output2) = 0;
121 virtual status_t closeOutput(int output) = 0;
122 virtual status_t suspendOutput(int output) = 0;
123 virtual status_t restoreOutput(int output) = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700124
Eric Laurentddb78e72009-07-28 08:44:33 -0700125 virtual int openInput(uint32_t *pDevices,
Eric Laurenta553c252009-07-17 12:17:14 -0700126 uint32_t *pSamplingRate,
127 uint32_t *pFormat,
128 uint32_t *pChannels,
129 uint32_t acoustics) = 0;
Eric Laurentddb78e72009-07-28 08:44:33 -0700130 virtual status_t closeInput(int input) = 0;
Eric Laurenta553c252009-07-17 12:17:14 -0700131
Eric Laurentddb78e72009-07-28 08:44:33 -0700132 virtual status_t setStreamOutput(uint32_t stream, int output) = 0;
Eric Laurent415f3e22009-10-21 08:14:22 -0700133
134 virtual status_t setVoiceVolume(float volume) = 0;
Eric Laurent47d0a922010-02-26 02:47:27 -0800135
Eric Laurent0986e792010-01-19 17:37:09 -0800136 virtual status_t getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames, int output) = 0;
Eric Laurent47d0a922010-02-26 02:47:27 -0800137
138 virtual unsigned int getInputFramesLost(int ioHandle) = 0;
Eric Laurent65b65452010-06-01 23:49:17 -0700139
140 virtual int newAudioSessionId() = 0;
141
142 virtual status_t loadEffectLibrary(const char *libPath, int *handle) = 0;
143
144 virtual status_t unloadEffectLibrary(int handle) = 0;
145
146 virtual status_t queryNumberEffects(uint32_t *numEffects) = 0;
147
Eric Laurent53334cd2010-06-23 17:38:20 -0700148 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *pDescriptor) = 0;
Eric Laurent65b65452010-06-01 23:49:17 -0700149
150 virtual status_t getEffectDescriptor(effect_uuid_t *pEffectUUID, effect_descriptor_t *pDescriptor) = 0;
151
152 virtual sp<IEffect> createEffect(pid_t pid,
153 effect_descriptor_t *pDesc,
154 const sp<IEffectClient>& client,
155 int32_t priority,
156 int output,
157 int sessionId,
158 status_t *status,
159 int *id,
160 int *enabled) = 0;
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700161
162 virtual status_t moveEffects(int session, int srcOutput, int dstOutput) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163};
164
165
166// ----------------------------------------------------------------------------
167
168class BnAudioFlinger : public BnInterface<IAudioFlinger>
169{
170public:
171 virtual status_t onTransact( uint32_t code,
172 const Parcel& data,
173 Parcel* reply,
174 uint32_t flags = 0);
175};
176
177// ----------------------------------------------------------------------------
178
179}; // namespace android
180
181#endif // ANDROID_IAUDIOFLINGER_H