Home
last modified time | relevance | path

Searched refs:getInputPreset (Results 1 – 10 of 10) sorted by relevance

/external/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DOboeAudioStream.java65 requestedConfiguration.getInputPreset(), in open()
85 actualConfiguration.setInputPreset(getInputPreset()); in open()
168 public int getInputPreset() { in getInputPreset() method in OboeAudioStream
169 return getInputPreset(streamIndex); in getInputPreset()
171 public native int getInputPreset(int streamIndex); in getInputPreset() method in OboeAudioStream
DTestDataPathsActivity.java175 … text += ", inPre = " + StreamConfiguration.convertInputPresetToText(config.getInputPreset()); in getConfigText()
203 if ((requestedInConfig.getInputPreset() != actualInConfig.getInputPreset())) { in shouldTestBeSkipped()
204 why += ", inPre(" + requestedInConfig.getInputPreset() in shouldTestBeSkipped()
205 + "!=" + actualInConfig.getInputPreset() + ")"; in shouldTestBeSkipped()
DStreamConfiguration.java162 public int getInputPreset() { in getInputPreset() method in StreamConfiguration
DStreamConfigurationView.java404 value = mActualConfiguration.getInputPreset(); in updateDisplay()
/external/oboe/src/opensles/
DAudioInputStreamOpenSLES.cpp159 if (getInputPreset() == InputPreset::VoicePerformance) { in open()
163 SLuint32 presetValue = OpenSLES_convertInputPreset(getInputPreset()); in open()
171 … LOGD("Setting InputPreset %d failed. Using VoiceRecognition instead.", getInputPreset()); in open()
/external/oboe/include/oboe/
DAudioStreamBase.h152 InputPreset getInputPreset() const { return mInputPreset; } in getInputPreset() function
/external/oboe/tests/
DtestStreamClosedMethods.cpp161 auto i = mStream->getInputPreset(); in TEST_F()
163 ASSERT_EQ(mStream->getInputPreset(), i); in TEST_F()
/external/oboe/src/common/
DQuirksManager.cpp97 && builder.getInputPreset() != oboe::InputPreset::Camcorder; in isAAudioMMapPossible()
DFilterAudioStream.h58 mInputPreset = mChildStream->getInputPreset(); in FilterAudioStream()
/external/oboe/apps/OboeTester/app/src/main/cpp/
Djni-bridge.cpp279 result = (jint) oboeStream->getInputPreset(); in Java_com_google_sample_oboe_manualtest_OboeAudioStream_getInputPreset()