Fix incorrect IntDef usage

#minor-release

PiperOrigin-RevId: 341668326
This commit is contained in:
olly 2020-11-10 20:01:35 +00:00 committed by kim-vde
parent 4ae0401c34
commit b1eef00b80

View File

@ -54,8 +54,8 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
private @MonotonicNonNull SurfaceTexture surfaceTexture; private @MonotonicNonNull SurfaceTexture surfaceTexture;
// Used by other threads only // Used by other threads only
private volatile @C.StreamType int defaultStereoMode; @C.StereoMode private volatile int defaultStereoMode;
private @C.StreamType int lastStereoMode; @C.StereoMode private int lastStereoMode;
@Nullable private byte[] lastProjectionData; @Nullable private byte[] lastProjectionData;
// Methods called on any thread. // Methods called on any thread.