Commit ce12edf4 by andrewlewis Committed by Tofunmi Adigun-Hameed

Remove unnecessary `volatile`

This field is always accessed with the mutex held.

PiperOrigin-RevId: 534027096
(cherry picked from commit ea42465fef89a667655c4d2603e7b48b54157d92)
parent 2469ee43
......@@ -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
......
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