Home
last modified time | relevance | path

Searched refs:getBufferSizeInFrames (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/
DAudioLatencyTuner.java60 mInitialSize = track.getBufferSizeInFrames(); in AudioLatencyTuner()
162 public int getBufferSizeInFrames() { in getBufferSizeInFrames() method in AudioLatencyTuner
163 return mAudioTrack.getBufferSizeInFrames(); in getBufferSizeInFrames()
226 int original = getBufferSizeInFrames(); in incrementThreshold()
DSimpleAudioOutput.java77 public int getBufferSizeInFrames() { in getBufferSizeInFrames() method in SimpleAudioOutput.MyLatencyController
80 return track.getBufferSizeInFrames(); in getBufferSizeInFrames()
DLatencyController.java56 public abstract int getBufferSizeInFrames(); in getBufferSizeInFrames() method in LatencyController
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DOboeAudioStream.java131 public int getBufferSizeInFrames() { in getBufferSizeInFrames() method in OboeAudioStream
132 return getBufferSizeInFrames(streamIndex); in getBufferSizeInFrames()
134 private native int getBufferSizeInFrames(int streamIndex); in getBufferSizeInFrames() method in OboeAudioStream
DAudioStreamBase.java33 status.bufferSize = getBufferSizeInFrames(); in getStreamStatus()
147 public int getBufferSizeInFrames() { in getBufferSizeInFrames() method in AudioStreamBase
DBufferSizeView.java124 int bufferSize = getAudioOutTester().getCurrentAudioStream().getBufferSizeInFrames(); in setBufferSizeByPosition()
DAnalyzerActivity.java114 int bufferSize = outStream.getBufferSizeInFrames(); in getCommonTestReport()
DRoundTripLatencyActivity.java243 int bufferSize = mAudioOutTester.getCurrentAudioStream().getBufferSizeInFrames(); in getResultString()
/third_party/skia/third_party/externals/oboe/src/common/
DFilterAudioStream.h153 int32_t getBufferSizeInFrames() override { in getBufferSizeInFrames() function
154 mBufferSizeInFrames = mChildStream->getBufferSizeInFrames(); in getBufferSizeInFrames()
DLatencyTuner.cpp60 int32_t oldBufferSize = mStream.getBufferSizeInFrames(); in tune()
DUtilities.cpp184 <<"BufferSize: "<<stream->getBufferSizeInFrames()<<std::endl in convertToText()
/third_party/skia/third_party/externals/oboe/samples/hello-oboe/src/main/cpp/
DLatencyTuningCallback.cpp31 int bufferSize = oboeStream->getBufferSizeInFrames(); in onAudioReady()
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAudioStreamAAudio.h69 int32_t getBufferSizeInFrames() override;
DAudioStreamAAudio.cpp557 int32_t AudioStreamAAudio::getBufferSizeInFrames() { in getBufferSizeInFrames() function in oboe::AudioStreamAAudio
/third_party/skia/third_party/externals/oboe/tests/
DtestStreamClosedMethods.cpp105 int32_t bufferSize = mStream->getBufferSizeInFrames(); in TEST_F()
107 ASSERT_EQ(mStream->getBufferSizeInFrames(), bufferSize); in TEST_F()
DtestStreamOpen.cpp357 int32_t bufferSize = mStream->getBufferSizeInFrames(); in TEST_F()
/third_party/skia/third_party/externals/oboe/include/oboe/
DAudioStreamBase.h80 virtual int32_t getBufferSizeInFrames() { return mBufferSizeInFrames; } in getBufferSizeInFrames() function
/third_party/skia/third_party/externals/oboe/src/opensles/
DAudioStreamBuffered.cpp152 int32_t emptyFrames = getBufferSizeInFrames() - static_cast<int32_t>(fullFrames); in transfer()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/
Djni-bridge.cpp198 result = oboeStream->getBufferSizeInFrames(); in Java_com_google_sample_oboe_manualtest_OboeAudioStream_getBufferSizeInFrames()