From 7a008413236aa6261e97901cdc49a46171ecd569 Mon Sep 17 00:00:00 2001 From: kimvde Date: Tue, 4 Mar 2025 02:48:46 -0800 Subject: [PATCH] Remove references to Renderer from VideoFrameReleaseHelper's Javadoc With multi video sequences previewing in CompositionPlayer, VideoFrameReleaseHelper won't be connected to a single renderer. Multiple renderers will feed the VideoGraph at the same time, and the VideoGraph output will be connected to the VideoFrameReleaseHelper. PiperOrigin-RevId: 733250499 --- .../video/VideoFrameReleaseHelper.java | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/video/VideoFrameReleaseHelper.java b/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/video/VideoFrameReleaseHelper.java index 2552e854be..c79e78f727 100644 --- a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/video/VideoFrameReleaseHelper.java +++ b/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/video/VideoFrameReleaseHelper.java @@ -33,11 +33,10 @@ import androidx.media3.common.Format; import androidx.media3.common.util.Log; import androidx.media3.common.util.UnstableApi; import androidx.media3.common.util.Util; -import androidx.media3.exoplayer.Renderer; import org.checkerframework.checker.nullness.qual.MonotonicNonNull; /** - * Helps a video {@link Renderer} release frames to a {@link Surface}. The helper: + * A helper to release video frames to a {@link Surface}. This helper: * *