Home
last modified time | relevance | path

Searched refs:InputPreset (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/oboe/src/common/
DUtilities.cpp235 const char *convertToText<InputPreset>(InputPreset inputPreset) { in convertToText()
238 case InputPreset::Generic: return "Generic"; in convertToText()
239 case InputPreset::Camcorder: return "Camcorder"; in convertToText()
240 case InputPreset::VoiceRecognition: return "VoiceRecognition"; in convertToText()
241 case InputPreset::VoiceCommunication: return "VoiceCommunication"; in convertToText()
242 case InputPreset::Unprocessed: return "Unprocessed"; in convertToText()
243 case InputPreset::VoicePerformance: return "VoicePerformance"; in convertToText()
DQuirksManager.cpp98 && builder.getInputPreset() != oboe::InputPreset::Camcorder; in isAAudioMMapPossible()
/third_party/skia/third_party/externals/oboe/src/opensles/
DAudioInputStreamOpenSLES.cpp29 static SLuint32 OpenSLES_convertInputPreset(InputPreset oboePreset) { in OpenSLES_convertInputPreset()
32 case InputPreset::Generic: in OpenSLES_convertInputPreset()
35 case InputPreset::Camcorder: in OpenSLES_convertInputPreset()
38 case InputPreset::VoiceRecognition: in OpenSLES_convertInputPreset()
41 case InputPreset::VoiceCommunication: in OpenSLES_convertInputPreset()
44 case InputPreset::Unprocessed: in OpenSLES_convertInputPreset()
166 mInputPreset = InputPreset::VoiceRecognition; in open()
DAudioStreamOpenSLES.cpp213 if (mInputPreset != InputPreset::VoiceRecognition) { in logUnsupportedAttributes()
/third_party/skia/third_party/externals/oboe/include/oboe/
DAudioStreamBase.h122 InputPreset getInputPreset() const { return mInputPreset; } in getInputPreset()
188 InputPreset mInputPreset = InputPreset::VoiceRecognition;
DDefinitions.h372 enum InputPreset : int32_t { // aaudio_input_preset_t enum
DAudioStreamBuilder.h251 AudioStreamBuilder *setInputPreset(InputPreset inputPreset) { in setInputPreset()
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAAudioLoader.cpp337 static_assert((int32_t)InputPreset::Generic == AAUDIO_INPUT_PRESET_GENERIC, ERRMSG);
338 static_assert((int32_t)InputPreset::Camcorder == AAUDIO_INPUT_PRESET_CAMCORDER, ERRMSG);
339 …static_assert((int32_t)InputPreset::VoiceRecognition == AAUDIO_INPUT_PRESET_VOICE_RECOGNITION, ERR…
340 static_assert((int32_t)InputPreset::VoiceCommunication
342 static_assert((int32_t)InputPreset::Unprocessed == AAUDIO_INPUT_PRESET_UNPROCESSED, ERRMSG);
DAudioStreamAAudio.cpp269 mInputPreset = static_cast<InputPreset>(mLibLoader->stream_getInputPreset(mAAudioStream)); in open()
/third_party/skia/third_party/externals/oboe/docs/
DAndroidAudioHistory.md8 - Add InputPreset:VoicePerformance for low latency recording.
DFullGuide.md188 The InputPreset may be used by the device to process the input stream (such as gain control). By de…
194 * `setInputPreset(oboe::InputPreset inputPreset)` - The recording configuration
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/
DNativeAudioContext.cpp182 ->setInputPreset((oboe::InputPreset)inputPreset) in open()