blob: c7136dff4e86bb1c1360f28515f3a6da5c62274b [file] [log] [blame]
Mikhail Naganov1dc98672016-08-18 17:50:29 -07001/*
2 * Copyright (C) 2016 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_HARDWARE_STREAM_HAL_LOCAL_H
18#define ANDROID_HARDWARE_STREAM_HAL_LOCAL_H
19
Mikhail Naganova0c91332016-09-19 10:01:12 -070020#include <media/audiohal/StreamHalInterface.h>
Andy Hung953608f2017-06-13 15:21:49 -070021#include "StreamPowerLog.h"
Mikhail Naganov1dc98672016-08-18 17:50:29 -070022
23namespace android {
24
25class DeviceHalLocal;
26
27class StreamHalLocal : public virtual StreamHalInterface
28{
29 public:
30 // Return the sampling rate in Hz - eg. 44100.
31 virtual status_t getSampleRate(uint32_t *rate);
32
33 // Return size of input/output buffer in bytes for this stream - eg. 4800.
34 virtual status_t getBufferSize(size_t *size);
35
36 // Return the channel mask.
37 virtual status_t getChannelMask(audio_channel_mask_t *mask);
38
39 // Return the audio format - e.g. AUDIO_FORMAT_PCM_16_BIT.
40 virtual status_t getFormat(audio_format_t *format);
41
42 // Convenience method.
43 virtual status_t getAudioProperties(
44 uint32_t *sampleRate, audio_channel_mask_t *mask, audio_format_t *format);
45
46 // Set audio stream parameters.
47 virtual status_t setParameters(const String8& kvPairs);
48
49 // Get audio stream parameters.
50 virtual status_t getParameters(const String8& keys, String8 *values);
51
52 // Add or remove the effect on the stream.
53 virtual status_t addEffect(sp<EffectHalInterface> effect);
54 virtual status_t removeEffect(sp<EffectHalInterface> effect);
55
56 // Put the audio hardware input/output into standby mode.
57 virtual status_t standby();
58
59 virtual status_t dump(int fd);
60
Eric Laurentaf35aad2016-12-15 14:25:36 -080061 // Start a stream operating in mmap mode.
62 virtual status_t start() = 0;
63
64 // Stop a stream operating in mmap mode.
65 virtual status_t stop() = 0;
66
67 // Retrieve information on the data buffer in mmap mode.
68 virtual status_t createMmapBuffer(int32_t minSizeFrames,
69 struct audio_mmap_buffer_info *info) = 0;
70
71 // Get current read/write position in the mmap buffer
72 virtual status_t getMmapPosition(struct audio_mmap_position *position) = 0;
73
Mikhail Naganove1c4b5d2016-12-22 09:22:45 -080074 // Set the priority of the thread that interacts with the HAL
75 // (must match the priority of the audioflinger's thread that calls 'read' / 'write')
76 virtual status_t setHalThreadPriority(int priority);
77
Mikhail Naganov1dc98672016-08-18 17:50:29 -070078 protected:
79 // Subclasses can not be constructed directly by clients.
80 StreamHalLocal(audio_stream_t *stream, sp<DeviceHalLocal> device);
81
82 // The destructor automatically closes the stream.
83 virtual ~StreamHalLocal();
84
85 sp<DeviceHalLocal> mDevice;
86
Andy Hung953608f2017-06-13 15:21:49 -070087 // mStreamPowerLog is used for audio signal power logging.
88 StreamPowerLog mStreamPowerLog;
89
Mikhail Naganov1dc98672016-08-18 17:50:29 -070090 private:
91 audio_stream_t *mStream;
92};
93
94class StreamOutHalLocal : public StreamOutHalInterface, public StreamHalLocal {
95 public:
96 // Return the frame size (number of bytes per sample) of a stream.
97 virtual status_t getFrameSize(size_t *size);
98
99 // Return the audio hardware driver estimated latency in milliseconds.
100 virtual status_t getLatency(uint32_t *latency);
101
102 // Use this method in situations where audio mixing is done in the hardware.
103 virtual status_t setVolume(float left, float right);
104
105 // Write audio buffer to driver.
106 virtual status_t write(const void *buffer, size_t bytes, size_t *written);
107
108 // Return the number of audio frames written by the audio dsp to DAC since
109 // the output has exited standby.
110 virtual status_t getRenderPosition(uint32_t *dspFrames);
111
112 // Get the local time at which the next write to the audio driver will be presented.
113 virtual status_t getNextWriteTimestamp(int64_t *timestamp);
114
115 // Set the callback for notifying completion of non-blocking write and drain.
Mikhail Naganov15897e42016-09-30 16:16:41 -0700116 virtual status_t setCallback(wp<StreamOutHalInterfaceCallback> callback);
Mikhail Naganov1dc98672016-08-18 17:50:29 -0700117
118 // Returns whether pause and resume operations are supported.
119 virtual status_t supportsPauseAndResume(bool *supportsPause, bool *supportsResume);
120
121 // Notifies to the audio driver to resume playback following a pause.
122 virtual status_t pause();
123
124 // Notifies to the audio driver to resume playback following a pause.
125 virtual status_t resume();
126
127 // Returns whether drain operation is supported.
128 virtual status_t supportsDrain(bool *supportsDrain);
129
130 // Requests notification when data buffered by the driver/hardware has been played.
Mikhail Naganovcbc8f612016-10-11 18:05:13 -0700131 virtual status_t drain(bool earlyNotify);
Mikhail Naganov1dc98672016-08-18 17:50:29 -0700132
133 // Notifies to the audio driver to flush the queued data.
134 virtual status_t flush();
135
136 // Return a recent count of the number of audio frames presented to an external observer.
137 virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp);
138
Eric Laurentaf35aad2016-12-15 14:25:36 -0800139 // Start a stream operating in mmap mode.
140 virtual status_t start();
141
142 // Stop a stream operating in mmap mode.
143 virtual status_t stop();
144
145 // Retrieve information on the data buffer in mmap mode.
146 virtual status_t createMmapBuffer(int32_t minSizeFrames,
147 struct audio_mmap_buffer_info *info);
148
149 // Get current read/write position in the mmap buffer
150 virtual status_t getMmapPosition(struct audio_mmap_position *position);
151
Mikhail Naganov1dc98672016-08-18 17:50:29 -0700152 private:
153 audio_stream_out_t *mStream;
154 wp<StreamOutHalInterfaceCallback> mCallback;
155
156 friend class DeviceHalLocal;
157
158 // Can not be constructed directly by clients.
159 StreamOutHalLocal(audio_stream_out_t *stream, sp<DeviceHalLocal> device);
160
161 virtual ~StreamOutHalLocal();
162
163 static int asyncCallback(stream_callback_event_t event, void *param, void *cookie);
164};
165
166class StreamInHalLocal : public StreamInHalInterface, public StreamHalLocal {
167 public:
168 // Return the frame size (number of bytes per sample) of a stream.
169 virtual status_t getFrameSize(size_t *size);
170
171 // Set the input gain for the audio driver.
172 virtual status_t setGain(float gain);
173
174 // Read audio buffer in from driver.
175 virtual status_t read(void *buffer, size_t bytes, size_t *read);
176
177 // Return the amount of input frames lost in the audio driver.
178 virtual status_t getInputFramesLost(uint32_t *framesLost);
179
180 // Return a recent count of the number of audio frames received and
181 // the clock time associated with that frame count.
182 virtual status_t getCapturePosition(int64_t *frames, int64_t *time);
183
Eric Laurentaf35aad2016-12-15 14:25:36 -0800184 // Start a stream operating in mmap mode.
185 virtual status_t start();
186
187 // Stop a stream operating in mmap mode.
188 virtual status_t stop();
189
190 // Retrieve information on the data buffer in mmap mode.
191 virtual status_t createMmapBuffer(int32_t minSizeFrames,
192 struct audio_mmap_buffer_info *info);
193
194 // Get current read/write position in the mmap buffer
195 virtual status_t getMmapPosition(struct audio_mmap_position *position);
196
Mikhail Naganov1dc98672016-08-18 17:50:29 -0700197 private:
198 audio_stream_in_t *mStream;
199
200 friend class DeviceHalLocal;
201
202 // Can not be constructed directly by clients.
203 StreamInHalLocal(audio_stream_in_t *stream, sp<DeviceHalLocal> device);
204
205 virtual ~StreamInHalLocal();
206};
207
208} // namespace android
209
210#endif // ANDROID_HARDWARE_STREAM_HAL_LOCAL_H