Home
last modified time | relevance | path

Searched refs:expectedFrames (Results 1 – 6 of 6) sorted by relevance

/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/
Dloopback_test.cpp106 AudioBufferView<sample_t> LatencyTest::writeCallback(size_t expectedFrames) { in writeCallback() argument
115 AudioBufferView<sample_t> readBuffer = mReadBuffer.getView(0, expectedFrames); in writeCallback()
126 mInitialSilenceFrameCount -= expectedFrames; in writeCallback()
139 mImpulse.getView(mInjectImpulseNextFramePos, expectedFrames); in writeCallback()
167 AudioBufferView<sample_t> GlitchTest::writeCallback(size_t expectedFrames) { in writeCallback() argument
183 return mTestCtx->getNextImpulse(expectedFrames); in writeCallback()
Dloopback_test.h75 AudioBufferView<sample_t> writeCallback(size_t expectedFrames);
98 AudioBufferView<sample_t> writeCallback(size_t expectedFrames);
Dsound_system.h34 using WriteCallback = std::function<AudioBufferView<sample_t>(size_t expectedFrames)>;
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DFileVideoCapturerTest.java86 final String[] expectedFrames = { in testVideoCaptureFromFile() local
90 capturerObserver.getMinimumFramesBlocking(expectedFrames.length); in testVideoCaptureFromFile()
91 assertEquals(expectedFrames.length, frames.size()); in testVideoCaptureFromFile()
97 for (int i = 0; i < expectedFrames.length; ++i) { in testVideoCaptureFromFile()
121 expectedFrames[i].getBytes(Charset.forName("US-ASCII")), frameContents); in testVideoCaptureFromFile()
/external/kotlinx.coroutines/kotlinx-coroutines-debug/test/
DStartModeProbesTest.kt94 private suspend fun testActiveDump(shouldYield: Boolean, vararg expectedFrames: String) { in testActiveDump()
96 verifyPartialDump(1, *expectedFrames) in testActiveDump()
/external/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
DPeerConnectionClientTest.java96 public MockSink(int expectedFrames, String rendererName) { in MockSink() argument
98 reset(expectedFrames); in MockSink()
104 public synchronized void reset(int expectedFrames) { in reset() argument
106 doneRendering = new CountDownLatch(expectedFrames); in reset()