-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
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
[av][ncl][go] fix audio and video qa issues #21055
Conversation
Hi there! 👋 I'm a bot whose goal is to ensure your contributions meet our guidelines. I've found some issues in your pull request that should be addressed (click on them for more details) 👇 ❌ Error: Changelog entry in wrong CHANGELOG file
Generated by ExpoBot 🤖 against 1697397 |
…flipper * upstream/main: (47 commits) [docs] Update Hermes guide to state that Hermes is the new default engine (expo#21047) chore: don't mark issues with the "Issue accepted" label as stale (expo#21058) Switch default JS engine to Hermes (expo#21001) [mail-composer][android] fix composeAsync not resolving after send/ discard (expo#20869) Update CHANGELOG.md (expo#21061) [core][iOS] Fix expo modules aren't added to global (expo#21037) [test-suite] Fix import in the Image example (expo#21043) [test-suite] fix video hanging (expo#21057) [av][ncl][go] fix audio and video qa issues (expo#21055) [tools] Selecting pull requests to label in the publish command (expo#20991) [document-picker] fill missing descriptions in `DocumentResult` type (expo#21040) [tools] Bump http-cache-semantics from 4.1.0 to 4.1.1 (expo#21049) Bump http-cache-semantics from 4.1.0 to 4.1.1 in /docs (expo#21050) [apps][yarn-workspace] replace deprecated activateKeepAwake update changelogs for react-native 0.71 upgrade (expo#20858) Upgrade react native to 0.71.2 (expo#21045) [go] update @shopify/react-native-skia to 0.1.172 (expo#21014) [stripe] Upgrade stripe to 0.23.1 (expo#20964) [expo-firebase-*] Remove libraries (expo#20979) [docs] Update expo-secure-store to add info about Export compliance (expo#21021) ...
private void emitSampleBufferEvent(final byte[] bytes, final double currentPositionSeconds) { | ||
final UIManager uiManager = mUiManager.get(); | ||
if (uiManager != null) { | ||
uiManager.runOnClientCodeQueueThread(() -> { | ||
sampleBufferCallback(bytes, currentPositionSeconds); | ||
}); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The currentPositionSeconds
passed into an async call will no longer be accurate, hopefully this isn't a significant loss
Why
fix audio and video issues from sdk48 android unversioned qa
How
onSlidingComplete
issue. this pr update the vendored slider to the latest version with a fix.setVolumeAsync
unhandled promise rejection: accesssound
when it's before starting (undefined).Test Plan
Checklist
expo prebuild
& EAS Build (eg: updated a module plugin).