Searched refs:InputPreset (Results 1 – 12 of 12) sorted by relevance
235 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()
98 && builder.getInputPreset() != oboe::InputPreset::Camcorder; in isAAudioMMapPossible()
29 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()
213 if (mInputPreset != InputPreset::VoiceRecognition) { in logUnsupportedAttributes()
122 InputPreset getInputPreset() const { return mInputPreset; } in getInputPreset()188 InputPreset mInputPreset = InputPreset::VoiceRecognition;
372 enum InputPreset : int32_t { // aaudio_input_preset_t enum
251 AudioStreamBuilder *setInputPreset(InputPreset inputPreset) { in setInputPreset()
337 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::VoiceCommunication342 static_assert((int32_t)InputPreset::Unprocessed == AAUDIO_INPUT_PRESET_UNPROCESSED, ERRMSG);
269 mInputPreset = static_cast<InputPreset>(mLibLoader->stream_getInputPreset(mAAudioStream)); in open()
8 - Add InputPreset:VoicePerformance for low latency recording.
188 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
182 ->setInputPreset((oboe::InputPreset)inputPreset) in open()