blob: 377acb41310eb41412cb1f496aad34a9e440fd3a [file] [log] [blame]
Mikhail Naganovf558e022016-11-14 17:45:17 -08001/*
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_HIDL_H
18#define ANDROID_HARDWARE_STREAM_HAL_HIDL_H
19
20#include <android/hardware/audio/2.0/IStream.h>
21#include <android/hardware/audio/2.0/IStreamIn.h>
22#include <android/hardware/audio/2.0/IStreamOut.h>
23#include <media/audiohal/StreamHalInterface.h>
24
25#include "ConversionHelperHidl.h"
26
27using ::android::hardware::audio::V2_0::IStream;
28using ::android::hardware::audio::V2_0::IStreamIn;
29using ::android::hardware::audio::V2_0::IStreamOut;
30using ::android::hardware::Return;
31
32namespace android {
33
34class DeviceHalHidl;
35
36class StreamHalHidl : public virtual StreamHalInterface, public ConversionHelperHidl
37{
38 public:
39 // Return the sampling rate in Hz - eg. 44100.
40 virtual status_t getSampleRate(uint32_t *rate);
41
42 // Return size of input/output buffer in bytes for this stream - eg. 4800.
43 virtual status_t getBufferSize(size_t *size);
44
45 // Return the channel mask.
46 virtual status_t getChannelMask(audio_channel_mask_t *mask);
47
48 // Return the audio format - e.g. AUDIO_FORMAT_PCM_16_BIT.
49 virtual status_t getFormat(audio_format_t *format);
50
51 // Convenience method.
52 virtual status_t getAudioProperties(
53 uint32_t *sampleRate, audio_channel_mask_t *mask, audio_format_t *format);
54
55 // Set audio stream parameters.
56 virtual status_t setParameters(const String8& kvPairs);
57
58 // Get audio stream parameters.
59 virtual status_t getParameters(const String8& keys, String8 *values);
60
61 // Add or remove the effect on the stream.
62 virtual status_t addEffect(sp<EffectHalInterface> effect);
63 virtual status_t removeEffect(sp<EffectHalInterface> effect);
64
65 // Put the audio hardware input/output into standby mode.
66 virtual status_t standby();
67
68 virtual status_t dump(int fd);
69
Eric Laurentaf35aad2016-12-15 14:25:36 -080070 // Start a stream operating in mmap mode.
71 virtual status_t start();
72
73 // Stop a stream operating in mmap mode.
74 virtual status_t stop();
75
76 // Retrieve information on the data buffer in mmap mode.
77 virtual status_t createMmapBuffer(int32_t minSizeFrames,
78 struct audio_mmap_buffer_info *info);
79
80 // Get current read/write position in the mmap buffer
81 virtual status_t getMmapPosition(struct audio_mmap_position *position);
82
Mikhail Naganovf558e022016-11-14 17:45:17 -080083 protected:
84 // Subclasses can not be constructed directly by clients.
85 explicit StreamHalHidl(IStream *stream);
86
87 // The destructor automatically closes the stream.
88 virtual ~StreamHalHidl();
89
90 private:
91 IStream *mStream;
92};
93
94class StreamOutHalHidl : public StreamOutHalInterface, public StreamHalHidl {
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.
116 virtual status_t setCallback(wp<StreamOutHalInterfaceCallback> callback);
117
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.
131 virtual status_t drain(bool earlyNotify);
132
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
139 // Methods used by StreamOutCallback (HIDL).
140 void onWriteReady();
141 void onDrainReady();
142 void onError();
143
144 private:
145 friend class DeviceHalHidl;
146
147 wp<StreamOutHalInterfaceCallback> mCallback;
148 sp<IStreamOut> mStream;
149
150 // Can not be constructed directly by clients.
151 StreamOutHalHidl(const sp<IStreamOut>& stream);
152
153 virtual ~StreamOutHalHidl();
154};
155
156class StreamInHalHidl : public StreamInHalInterface, public StreamHalHidl {
157 public:
158 // Return the frame size (number of bytes per sample) of a stream.
159 virtual status_t getFrameSize(size_t *size);
160
161 // Set the input gain for the audio driver.
162 virtual status_t setGain(float gain);
163
164 // Read audio buffer in from driver.
165 virtual status_t read(void *buffer, size_t bytes, size_t *read);
166
167 // Return the amount of input frames lost in the audio driver.
168 virtual status_t getInputFramesLost(uint32_t *framesLost);
169
170 // Return a recent count of the number of audio frames received and
171 // the clock time associated with that frame count.
172 virtual status_t getCapturePosition(int64_t *frames, int64_t *time);
173
174 private:
175 friend class DeviceHalHidl;
176
177 sp<IStreamIn> mStream;
178
179 // Can not be constructed directly by clients.
180 StreamInHalHidl(const sp<IStreamIn>& stream);
181
182 virtual ~StreamInHalHidl();
183};
184
185} // namespace android
186
187#endif // ANDROID_HARDWARE_STREAM_HAL_HIDL_H