mirror of
https://github.com/samsonjs/media.git
synced 2026-04-07 11:35:46 +00:00
Fix incorrect IntDef usage
#minor-release PiperOrigin-RevId: 341668326
This commit is contained in:
parent
8e638ec753
commit
12e428ec87
1 changed files with 2 additions and 2 deletions
|
|
@ -54,8 +54,8 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
|||
private @MonotonicNonNull SurfaceTexture surfaceTexture;
|
||||
|
||||
// Used by other threads only
|
||||
private volatile @C.StreamType int defaultStereoMode;
|
||||
private @C.StreamType int lastStereoMode;
|
||||
@C.StereoMode private volatile int defaultStereoMode;
|
||||
@C.StereoMode private int lastStereoMode;
|
||||
@Nullable private byte[] lastProjectionData;
|
||||
|
||||
// Methods called on any thread.
|
||||
|
|
|
|||
Loading…
Reference in a new issue