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