mirror of
https://github.com/androidx/media.git
synced 2025-05-14 19:19:58 +08:00
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 b1b9ba825f83030c5d5b0617796176f21526dc2e)
This commit is contained in:
parent
8aa4281dfa
commit
309fd907b1
@ -17,8 +17,11 @@ package androidx.media3.transformer;
|
||||
|
||||
import static androidx.media3.common.util.Assertions.checkArgument;
|
||||
|
||||
import androidx.media3.common.util.UnstableApi;
|
||||
|
||||
/** Value class specifying information about a decoded video frame. */
|
||||
/* package */ class FrameInfo {
|
||||
@UnstableApi
|
||||
public class FrameInfo {
|
||||
/** The width of the frame, in pixels. */
|
||||
public final int width;
|
||||
/** The height of the frame, in pixels. */
|
||||
|
@ -19,9 +19,11 @@ import static androidx.media3.common.util.Assertions.checkArgument;
|
||||
|
||||
import android.view.Surface;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.media3.common.util.UnstableApi;
|
||||
|
||||
/** Immutable value class for a {@link Surface} and supporting information. */
|
||||
/* package */ final class SurfaceInfo {
|
||||
@UnstableApi
|
||||
public final class SurfaceInfo {
|
||||
|
||||
/** The {@link Surface}. */
|
||||
public final Surface surface;
|
||||
|
Loading…
x
Reference in New Issue
Block a user