Commit 13e9ec99 by claincly Committed by Marc Baechinger

Clean up NOP constructor lines in RTP readers

PiperOrigin-RevId: 465067191
parent 245326a0
...@@ -60,7 +60,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull; ...@@ -60,7 +60,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
this.payloadFormat = payloadFormat; this.payloadFormat = payloadFormat;
firstReceivedTimestamp = C.TIME_UNSET; firstReceivedTimestamp = C.TIME_UNSET;
previousSequenceNumber = C.INDEX_UNSET; previousSequenceNumber = C.INDEX_UNSET;
sampleLength = 0;
} }
@Override @Override
......
...@@ -74,9 +74,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull; ...@@ -74,9 +74,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
fragmentedSampleTimeUs = C.TIME_UNSET; fragmentedSampleTimeUs = C.TIME_UNSET;
// The start time offset must be 0 until the first seek. // The start time offset must be 0 until the first seek.
startTimeOffsetUs = 0; startTimeOffsetUs = 0;
gotFirstPacketOfVp8Frame = false;
isKeyFrame = false;
isOutputFormatSet = false;
} }
@Override @Override
......
...@@ -81,10 +81,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull; ...@@ -81,10 +81,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
previousSequenceNumber = C.INDEX_UNSET; previousSequenceNumber = C.INDEX_UNSET;
width = C.LENGTH_UNSET; width = C.LENGTH_UNSET;
height = C.LENGTH_UNSET; height = C.LENGTH_UNSET;
// TODO(b/240318842) Clean up VP8/VP9 reader.
gotFirstPacketOfVp9Frame = false;
reportedOutputFormat = false;
isKeyFrame = false;
} }
@Override @Override
......
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