We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android version(s): ALL Android device(s): ALL Oboe version: Latest App name used for testing: UnitTestRunner
Below is a very basic test that fails on all devices on all Android versions:
TEST_F(StreamOpenOutput, OutputForOpenSLESPerformanceModeNoneGetBufferSizeInFrames){ mBuilder.setPerformanceMode(PerformanceMode::None); mBuilder.setAudioApi(AudioApi::OpenSLES); ASSERT_TRUE(openStream()); EXPECT_GT(mStream->getBufferSizeInFrames(), 0); ASSERT_TRUE(closeStream()); }
When callbacks are not used, getBufferSizeInFrames() returns 0. This in return causes writing to the stream to never actually write.
The text was updated successfully, but these errors were encountered:
This is an extension of #285 as #287 only fixes the callback case and not the non-callback case.
Sorry, something went wrong.
robertwu1
Successfully merging a pull request may close this issue.
Android version(s): ALL
Android device(s): ALL
Oboe version: Latest
App name used for testing: UnitTestRunner
Below is a very basic test that fails on all devices on all Android versions:
When callbacks are not used, getBufferSizeInFrames() returns 0. This in return causes writing to the stream to never actually write.
The text was updated successfully, but these errors were encountered: