blob: 760595c27a491e10a05215c3450eabfaeb221b14 [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 Laurent0fb66c22011-05-17 19:16:02 -070030#include <hardware/audio_effect.h>
Eric Laurent65b65452010-06-01 23:49:17 -070031#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,
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080049 audio_stream_type_t streamType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050 uint32_t sampleRate,
Glenn Kasten0a204ed2012-01-12 12:27:51 -080051 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -070052 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 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,
Glenn Kasten0a204ed2012-01-12 12:27:51 -080064 audio_format_t format,
Jean-Michel Trivi54392232011-05-24 15:53:33 -070065 uint32_t channelMask,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 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;
Glenn Kasten0a204ed2012-01-12 12:27:51 -080076 virtual audio_format_t format(int output) const = 0;
Eric Laurentddb78e72009-07-28 08:44:33 -070077 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 */
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080092 virtual status_t setStreamVolume(audio_stream_type_t stream, float value, int output) = 0;
93 virtual status_t setStreamMute(audio_stream_type_t stream, bool muted) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094
Glenn Kastenbc1d77b2012-01-12 16:38:12 -080095 virtual float streamVolume(audio_stream_type_t stream, int output) const = 0;
96 virtual bool streamMute(audio_stream_type_t stream) const = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097
Eric Laurenta553c252009-07-17 12:17:14 -070098 // set audio mode
Glenn Kastenaccb1142012-01-04 11:00:47 -080099 virtual status_t setMode(audio_mode_t 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
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800112 virtual size_t getInputBufferSize(uint32_t sampleRate, audio_format_t 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,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800116 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700117 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,
Glenn Kasten0a204ed2012-01-12 12:27:51 -0800127 audio_format_t *pFormat,
Eric Laurenta553c252009-07-17 12:17:14 -0700128 uint32_t *pChannels,
Glenn Kasten882c0a22012-01-27 12:32:34 -0800129 audio_in_acoustics_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
Glenn Kastenbc1d77b2012-01-12 16:38:12 -0800132 virtual status_t setStreamOutput(audio_stream_type_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
Marco Nelissenc74b93f2011-08-02 13:33:41 -0700142 virtual void acquireAudioSessionId(int audioSession) = 0;
143 virtual void releaseAudioSessionId(int audioSession) = 0;
144
Eric Laurent65b65452010-06-01 23:49:17 -0700145 virtual status_t queryNumberEffects(uint32_t *numEffects) = 0;
146
Eric Laurent53334cd2010-06-23 17:38:20 -0700147 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *pDescriptor) = 0;
Eric Laurent65b65452010-06-01 23:49:17 -0700148
149 virtual status_t getEffectDescriptor(effect_uuid_t *pEffectUUID, effect_descriptor_t *pDescriptor) = 0;
150
151 virtual sp<IEffect> createEffect(pid_t pid,
152 effect_descriptor_t *pDesc,
153 const sp<IEffectClient>& client,
154 int32_t priority,
155 int output,
156 int sessionId,
157 status_t *status,
158 int *id,
159 int *enabled) = 0;
Eric Laurent8ed6ed02010-07-13 04:45:46 -0700160
161 virtual status_t moveEffects(int session, int srcOutput, int dstOutput) = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162};
163
164
165// ----------------------------------------------------------------------------
166
167class BnAudioFlinger : public BnInterface<IAudioFlinger>
168{
169public:
170 virtual status_t onTransact( uint32_t code,
171 const Parcel& data,
172 Parcel* reply,
173 uint32_t flags = 0);
174};
175
176// ----------------------------------------------------------------------------
177
178}; // namespace android
179
180#endif // ANDROID_IAUDIOFLINGER_H