mirror of
https://github.com/samsonjs/media.git
synced 2026-04-08 11:45:51 +00:00
Support seeking when playing back a composition
PiperOrigin-RevId: 628382976
This commit is contained in:
parent
5666678d8a
commit
4be30bb308
1 changed files with 6 additions and 6 deletions
|
|
@ -645,11 +645,11 @@ public class MediaCodecVideoRenderer extends MediaCodecRenderer
|
|||
|
||||
@Override
|
||||
protected void onPositionReset(long positionUs, boolean joining) throws ExoPlaybackException {
|
||||
// When this renderer doesn't own the VideoSinkProvider, it's possible that the VideoSink is
|
||||
// already initialized by another renderer, before this renderer is enabled.
|
||||
// Flush the video sink first to ensure it stops reading textures that will be owned by
|
||||
// MediaCodec once the codec is flushed.
|
||||
if (videoSink != null) {
|
||||
videoSink.flush();
|
||||
}
|
||||
videoSinkProvider.getSink().flush();
|
||||
super.onPositionReset(positionUs, joining);
|
||||
videoFrameReleaseControl.reset();
|
||||
if (joining) {
|
||||
|
|
@ -1471,9 +1471,9 @@ public class MediaCodecVideoRenderer extends MediaCodecRenderer
|
|||
super.onProcessedStreamChange();
|
||||
videoFrameReleaseControl.onProcessedStreamChange();
|
||||
maybeSetupTunnelingForFirstFrame();
|
||||
if (videoSink != null) {
|
||||
videoSink.setStreamOffsetUs(getOutputStreamOffsetUs());
|
||||
}
|
||||
// If the renderer does not own the VideoSinkProvider, it's possible the VideoSink is null when
|
||||
// this method is invoked, that is when transitioning from another renderer.
|
||||
videoSinkProvider.getSink().setStreamOffsetUs(getOutputStreamOffsetUs());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue