MuxerWrapper: remove unnecessary volatiles

PiperOrigin-RevId: 592569012
This commit is contained in:
tofunmi 2023-12-20 08:33:53 -08:00 committed by Copybara-Service
parent 59f01388a6
commit 4ce47ccdd3

View File

@ -111,11 +111,8 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
private boolean isAborted;
private @MonotonicNonNull Muxer muxer;
private @MuxerMode int muxerMode;
// Read by any thread, only written to on the transformerInternal thread.
private volatile boolean muxedPartialVideo;
// Read by any thread, only written to on the transformerInternal thread.
private volatile boolean muxedPartialAudio;
private boolean muxedPartialVideo;
private boolean muxedPartialAudio;
private volatile int additionalRotationDegrees;
private volatile int trackCount;