mirror of
https://github.com/samsonjs/media.git
synced 2026-04-24 14:37:45 +00:00
Remove unnecessary volatile
This field is always accessed with the mutex held.
PiperOrigin-RevId: 534027096
(cherry picked from commit ea0b94c0eb)
This commit is contained in:
parent
8a9503c01a
commit
8df047108c
1 changed files with 2 additions and 1 deletions
|
|
@ -106,7 +106,8 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
|||
@Nullable private OnInputStreamProcessedListener onInputStreamProcessedListener;
|
||||
private boolean frameProcessingStarted;
|
||||
|
||||
private volatile boolean outputSurfaceInfoChanged;
|
||||
@GuardedBy("this")
|
||||
private boolean outputSurfaceInfoChanged;
|
||||
|
||||
@GuardedBy("this")
|
||||
@Nullable
|
||||
|
|
|
|||
Loading…
Reference in a new issue