Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 1 | /* |
| 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 Naganov | a0c9133 | 2016-09-19 10:01:12 -0700 | [diff] [blame] | 20 | #include <media/audiohal/StreamHalInterface.h> |
Andy Hung | 953608f | 2017-06-13 15:21:49 -0700 | [diff] [blame] | 21 | #include "StreamPowerLog.h" |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 22 | |
| 23 | namespace android { |
Kevin Rocard | 070e751 | 2018-05-22 09:29:13 -0700 | [diff] [blame] | 24 | namespace CPP_VERSION { |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 25 | |
| 26 | class DeviceHalLocal; |
| 27 | |
| 28 | class StreamHalLocal : public virtual StreamHalInterface |
| 29 | { |
| 30 | public: |
| 31 | // Return the sampling rate in Hz - eg. 44100. |
| 32 | virtual status_t getSampleRate(uint32_t *rate); |
| 33 | |
| 34 | // Return size of input/output buffer in bytes for this stream - eg. 4800. |
| 35 | virtual status_t getBufferSize(size_t *size); |
| 36 | |
| 37 | // Return the channel mask. |
| 38 | virtual status_t getChannelMask(audio_channel_mask_t *mask); |
| 39 | |
| 40 | // Return the audio format - e.g. AUDIO_FORMAT_PCM_16_BIT. |
| 41 | virtual status_t getFormat(audio_format_t *format); |
| 42 | |
| 43 | // Convenience method. |
| 44 | virtual status_t getAudioProperties( |
| 45 | uint32_t *sampleRate, audio_channel_mask_t *mask, audio_format_t *format); |
| 46 | |
| 47 | // Set audio stream parameters. |
| 48 | virtual status_t setParameters(const String8& kvPairs); |
| 49 | |
| 50 | // Get audio stream parameters. |
| 51 | virtual status_t getParameters(const String8& keys, String8 *values); |
| 52 | |
| 53 | // Add or remove the effect on the stream. |
| 54 | virtual status_t addEffect(sp<EffectHalInterface> effect); |
| 55 | virtual status_t removeEffect(sp<EffectHalInterface> effect); |
| 56 | |
| 57 | // Put the audio hardware input/output into standby mode. |
| 58 | virtual status_t standby(); |
| 59 | |
| 60 | virtual status_t dump(int fd); |
| 61 | |
Eric Laurent | af35aad | 2016-12-15 14:25:36 -0800 | [diff] [blame] | 62 | // Start a stream operating in mmap mode. |
| 63 | virtual status_t start() = 0; |
| 64 | |
| 65 | // Stop a stream operating in mmap mode. |
| 66 | virtual status_t stop() = 0; |
| 67 | |
| 68 | // Retrieve information on the data buffer in mmap mode. |
| 69 | virtual status_t createMmapBuffer(int32_t minSizeFrames, |
| 70 | struct audio_mmap_buffer_info *info) = 0; |
| 71 | |
| 72 | // Get current read/write position in the mmap buffer |
| 73 | virtual status_t getMmapPosition(struct audio_mmap_position *position) = 0; |
| 74 | |
Mikhail Naganov | e1c4b5d | 2016-12-22 09:22:45 -0800 | [diff] [blame] | 75 | // Set the priority of the thread that interacts with the HAL |
| 76 | // (must match the priority of the audioflinger's thread that calls 'read' / 'write') |
| 77 | virtual status_t setHalThreadPriority(int priority); |
| 78 | |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 79 | protected: |
| 80 | // Subclasses can not be constructed directly by clients. |
| 81 | StreamHalLocal(audio_stream_t *stream, sp<DeviceHalLocal> device); |
| 82 | |
| 83 | // The destructor automatically closes the stream. |
| 84 | virtual ~StreamHalLocal(); |
| 85 | |
| 86 | sp<DeviceHalLocal> mDevice; |
| 87 | |
Andy Hung | 953608f | 2017-06-13 15:21:49 -0700 | [diff] [blame] | 88 | // mStreamPowerLog is used for audio signal power logging. |
| 89 | StreamPowerLog mStreamPowerLog; |
| 90 | |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 91 | private: |
| 92 | audio_stream_t *mStream; |
| 93 | }; |
| 94 | |
| 95 | class StreamOutHalLocal : public StreamOutHalInterface, public StreamHalLocal { |
| 96 | public: |
| 97 | // Return the frame size (number of bytes per sample) of a stream. |
| 98 | virtual status_t getFrameSize(size_t *size); |
| 99 | |
| 100 | // Return the audio hardware driver estimated latency in milliseconds. |
| 101 | virtual status_t getLatency(uint32_t *latency); |
| 102 | |
| 103 | // Use this method in situations where audio mixing is done in the hardware. |
| 104 | virtual status_t setVolume(float left, float right); |
| 105 | |
Mikhail Naganov | ac917ac | 2018-11-28 14:03:52 -0800 | [diff] [blame] | 106 | // Selects the audio presentation (if available). |
| 107 | virtual status_t selectPresentation(int presentationId, int programId); |
| 108 | |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 109 | // Write audio buffer to driver. |
| 110 | virtual status_t write(const void *buffer, size_t bytes, size_t *written); |
| 111 | |
| 112 | // Return the number of audio frames written by the audio dsp to DAC since |
| 113 | // the output has exited standby. |
| 114 | virtual status_t getRenderPosition(uint32_t *dspFrames); |
| 115 | |
| 116 | // Get the local time at which the next write to the audio driver will be presented. |
| 117 | virtual status_t getNextWriteTimestamp(int64_t *timestamp); |
| 118 | |
| 119 | // Set the callback for notifying completion of non-blocking write and drain. |
Mikhail Naganov | 15897e4 | 2016-09-30 16:16:41 -0700 | [diff] [blame] | 120 | virtual status_t setCallback(wp<StreamOutHalInterfaceCallback> callback); |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 121 | |
| 122 | // Returns whether pause and resume operations are supported. |
| 123 | virtual status_t supportsPauseAndResume(bool *supportsPause, bool *supportsResume); |
| 124 | |
| 125 | // Notifies to the audio driver to resume playback following a pause. |
| 126 | virtual status_t pause(); |
| 127 | |
| 128 | // Notifies to the audio driver to resume playback following a pause. |
| 129 | virtual status_t resume(); |
| 130 | |
| 131 | // Returns whether drain operation is supported. |
| 132 | virtual status_t supportsDrain(bool *supportsDrain); |
| 133 | |
| 134 | // Requests notification when data buffered by the driver/hardware has been played. |
Mikhail Naganov | cbc8f61 | 2016-10-11 18:05:13 -0700 | [diff] [blame] | 135 | virtual status_t drain(bool earlyNotify); |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 136 | |
| 137 | // Notifies to the audio driver to flush the queued data. |
| 138 | virtual status_t flush(); |
| 139 | |
| 140 | // Return a recent count of the number of audio frames presented to an external observer. |
| 141 | virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp); |
| 142 | |
Eric Laurent | af35aad | 2016-12-15 14:25:36 -0800 | [diff] [blame] | 143 | // Start a stream operating in mmap mode. |
| 144 | virtual status_t start(); |
| 145 | |
| 146 | // Stop a stream operating in mmap mode. |
| 147 | virtual status_t stop(); |
| 148 | |
| 149 | // Retrieve information on the data buffer in mmap mode. |
| 150 | virtual status_t createMmapBuffer(int32_t minSizeFrames, |
| 151 | struct audio_mmap_buffer_info *info); |
| 152 | |
| 153 | // Get current read/write position in the mmap buffer |
| 154 | virtual status_t getMmapPosition(struct audio_mmap_position *position); |
| 155 | |
Kevin Rocard | a8975a7 | 2018-03-27 10:16:52 -0700 | [diff] [blame] | 156 | // Called when the metadata of the stream's source has been changed. |
| 157 | status_t updateSourceMetadata(const SourceMetadata& sourceMetadata) override; |
| 158 | |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 159 | private: |
| 160 | audio_stream_out_t *mStream; |
| 161 | wp<StreamOutHalInterfaceCallback> mCallback; |
| 162 | |
| 163 | friend class DeviceHalLocal; |
| 164 | |
| 165 | // Can not be constructed directly by clients. |
| 166 | StreamOutHalLocal(audio_stream_out_t *stream, sp<DeviceHalLocal> device); |
| 167 | |
| 168 | virtual ~StreamOutHalLocal(); |
| 169 | |
| 170 | static int asyncCallback(stream_callback_event_t event, void *param, void *cookie); |
| 171 | }; |
| 172 | |
| 173 | class StreamInHalLocal : public StreamInHalInterface, public StreamHalLocal { |
| 174 | public: |
| 175 | // Return the frame size (number of bytes per sample) of a stream. |
| 176 | virtual status_t getFrameSize(size_t *size); |
| 177 | |
| 178 | // Set the input gain for the audio driver. |
| 179 | virtual status_t setGain(float gain); |
| 180 | |
| 181 | // Read audio buffer in from driver. |
| 182 | virtual status_t read(void *buffer, size_t bytes, size_t *read); |
| 183 | |
| 184 | // Return the amount of input frames lost in the audio driver. |
| 185 | virtual status_t getInputFramesLost(uint32_t *framesLost); |
| 186 | |
| 187 | // Return a recent count of the number of audio frames received and |
| 188 | // the clock time associated with that frame count. |
| 189 | virtual status_t getCapturePosition(int64_t *frames, int64_t *time); |
| 190 | |
Eric Laurent | af35aad | 2016-12-15 14:25:36 -0800 | [diff] [blame] | 191 | // Start a stream operating in mmap mode. |
| 192 | virtual status_t start(); |
| 193 | |
| 194 | // Stop a stream operating in mmap mode. |
| 195 | virtual status_t stop(); |
| 196 | |
| 197 | // Retrieve information on the data buffer in mmap mode. |
| 198 | virtual status_t createMmapBuffer(int32_t minSizeFrames, |
| 199 | struct audio_mmap_buffer_info *info); |
| 200 | |
| 201 | // Get current read/write position in the mmap buffer |
| 202 | virtual status_t getMmapPosition(struct audio_mmap_position *position); |
| 203 | |
jiabin | 9ff780e | 2018-03-19 18:19:52 -0700 | [diff] [blame] | 204 | // Get active microphones |
| 205 | virtual status_t getActiveMicrophones(std::vector<media::MicrophoneInfo> *microphones); |
| 206 | |
Paul McLean | 03a6e6a | 2018-12-04 10:54:13 -0700 | [diff] [blame] | 207 | // Sets microphone direction (for processing) |
Paul McLean | 1234008 | 2019-03-19 09:35:05 -0600 | [diff] [blame] | 208 | virtual status_t setPreferredMicrophoneDirection(audio_microphone_direction_t direction); |
Paul McLean | 03a6e6a | 2018-12-04 10:54:13 -0700 | [diff] [blame] | 209 | |
| 210 | // Sets microphone zoom (for processing) |
Paul McLean | 1234008 | 2019-03-19 09:35:05 -0600 | [diff] [blame] | 211 | virtual status_t setPreferredMicrophoneFieldDimension(float zoom); |
Paul McLean | 03a6e6a | 2018-12-04 10:54:13 -0700 | [diff] [blame] | 212 | |
Kevin Rocard | a8975a7 | 2018-03-27 10:16:52 -0700 | [diff] [blame] | 213 | // Called when the metadata of the stream's sink has been changed. |
| 214 | status_t updateSinkMetadata(const SinkMetadata& sinkMetadata) override; |
| 215 | |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 216 | private: |
| 217 | audio_stream_in_t *mStream; |
| 218 | |
| 219 | friend class DeviceHalLocal; |
| 220 | |
| 221 | // Can not be constructed directly by clients. |
| 222 | StreamInHalLocal(audio_stream_in_t *stream, sp<DeviceHalLocal> device); |
| 223 | |
| 224 | virtual ~StreamInHalLocal(); |
| 225 | }; |
| 226 | |
Kevin Rocard | 070e751 | 2018-05-22 09:29:13 -0700 | [diff] [blame] | 227 | } // namespace CPP_VERSION |
Mikhail Naganov | 1dc9867 | 2016-08-18 17:50:29 -0700 | [diff] [blame] | 228 | } // namespace android |
| 229 | |
| 230 | #endif // ANDROID_HARDWARE_STREAM_HAL_LOCAL_H |