Class VideoFrameReleaseHelper
- java.lang.Object
-
- com.google.android.exoplayer2.video.VideoFrameReleaseHelper
-
@Deprecated public final class VideoFrameReleaseHelper extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Helps a videoRenderer
release frames to aSurface
. The helper:- Adjusts frame release timestamps to achieve a smoother visual result. The release timestamps are smoothed, and aligned with the default display's vsync signal.
- Adjusts the
Surface
frame rate to inform the underlying platform of a fixed frame rate, when there is one.
-
-
Constructor Summary
Constructors Constructor Description VideoFrameReleaseHelper(Context context)
Deprecated.Constructs an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description long
adjustReleaseTime(long releaseTimeNs)
Deprecated.Adjusts the release timestamp for the next frame.void
onFormatChanged(float formatFrameRate)
Deprecated.Called when the renderer's output format changes.void
onNextFrame(long framePresentationTimeUs)
Deprecated.Called by the renderer for each frame, prior to it being skipped, dropped or rendered.void
onPlaybackSpeed(float playbackSpeed)
Deprecated.Called when the renderer's playback speed changes.void
onPositionReset()
Deprecated.Called when the renderer's position is reset.void
onStarted()
Deprecated.Called when the renderer is started.void
onStopped()
Deprecated.Called when the renderer is stopped.void
onSurfaceChanged(Surface surface)
Deprecated.Called when the renderer changes whichSurface
it's rendering to renders to.void
setChangeFrameRateStrategy(@com.google.android.exoplayer2.C.VideoChangeFrameRateStrategy int changeFrameRateStrategy)
Deprecated.Change theC.VideoChangeFrameRateStrategy
used when callingSurface.setFrameRate(float, int, int)
.
-
-
-
Constructor Detail
-
VideoFrameReleaseHelper
public VideoFrameReleaseHelper(@Nullable Context context)
Deprecated.Constructs an instance.- Parameters:
context
- A context from which information about the default display can be retrieved.
-
-
Method Detail
-
setChangeFrameRateStrategy
public void setChangeFrameRateStrategy(@VideoChangeFrameRateStrategy @com.google.android.exoplayer2.C.VideoChangeFrameRateStrategy int changeFrameRateStrategy)
Deprecated.Change theC.VideoChangeFrameRateStrategy
used when callingSurface.setFrameRate(float, int, int)
.
-
onStarted
public void onStarted()
Deprecated.Called when the renderer is started.
-
onSurfaceChanged
public void onSurfaceChanged(@Nullable Surface surface)
Deprecated.Called when the renderer changes whichSurface
it's rendering to renders to.- Parameters:
surface
- The newSurface
, ornull
if the renderer does not have one.
-
onPositionReset
public void onPositionReset()
Deprecated.Called when the renderer's position is reset.
-
onPlaybackSpeed
public void onPlaybackSpeed(float playbackSpeed)
Deprecated.Called when the renderer's playback speed changes.- Parameters:
playbackSpeed
- The factor by which playback is sped up.
-
onFormatChanged
public void onFormatChanged(float formatFrameRate)
Deprecated.Called when the renderer's output format changes.- Parameters:
formatFrameRate
- The format's frame rate, orFormat.NO_VALUE
if unknown.
-
onNextFrame
public void onNextFrame(long framePresentationTimeUs)
Deprecated.Called by the renderer for each frame, prior to it being skipped, dropped or rendered.- Parameters:
framePresentationTimeUs
- The frame presentation timestamp, in microseconds.
-
onStopped
public void onStopped()
Deprecated.Called when the renderer is stopped.
-
adjustReleaseTime
public long adjustReleaseTime(long releaseTimeNs)
Deprecated.Adjusts the release timestamp for the next frame. This is the frame whose presentation timestamp was most recently passed toonNextFrame(long)
.This method may be called any number of times for each frame, including zero times (for skipped frames, or when rendering the first frame prior to playback starting), or more than once (if the caller wishes to give the helper the opportunity to refine a release time closer to when the frame needs to be released).
- Parameters:
releaseTimeNs
- The frame's unadjusted release time, in nanoseconds and in the same time base asSystem.nanoTime()
.- Returns:
- The adjusted frame release timestamp, in nanoseconds and in the same time base as
System.nanoTime()
.
-
-