Commit e674df7f by Googler Committed by microkatz

Make FrameInfo and SurfaceInfo public.

Both are used in the public FrameProcessor interface, so they
should be public too.

PiperOrigin-RevId: 463454859
(cherry picked from commit 40e96d15)
parent 6e8e648a
...@@ -18,7 +18,7 @@ package com.google.android.exoplayer2.transformer; ...@@ -18,7 +18,7 @@ package com.google.android.exoplayer2.transformer;
import static com.google.android.exoplayer2.util.Assertions.checkArgument; import static com.google.android.exoplayer2.util.Assertions.checkArgument;
/** Value class specifying information about a decoded video frame. */ /** Value class specifying information about a decoded video frame. */
/* package */ class FrameInfo { public class FrameInfo {
/** The width of the frame, in pixels. */ /** The width of the frame, in pixels. */
public final int width; public final int width;
/** The height of the frame, in pixels. */ /** The height of the frame, in pixels. */
......
...@@ -21,7 +21,7 @@ import android.view.Surface; ...@@ -21,7 +21,7 @@ import android.view.Surface;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
/** Immutable value class for a {@link Surface} and supporting information. */ /** Immutable value class for a {@link Surface} and supporting information. */
/* package */ final class SurfaceInfo { public final class SurfaceInfo {
/** The {@link Surface}. */ /** The {@link Surface}. */
public final Surface surface; public final Surface surface;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment