Skip to content

Commit

Permalink
Some minor cleanup in RTPMpeg4Reader
Browse files Browse the repository at this point in the history
  • Loading branch information
ManishaJajoo committed Feb 8, 2022
1 parent 743437e commit 177517e
Showing 1 changed file with 1 addition and 6 deletions.
Expand Up @@ -30,7 +30,7 @@
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;

/**
* Parses an H265 byte stream carried on RTP packets, and extracts H265 Access Units. Refer to
* Parses an MPEG4 byte stream carried on RTP packets, and extracts MPEG4 Access Units. Refer to
* RFC6416 for more details.
*/
/* package */ final class RtpMPEG4Reader implements RtpPayloadReader {
Expand All @@ -44,16 +44,11 @@
private static final int I_VOP = 0;

private final RtpPayloadFormat payloadFormat;

private @MonotonicNonNull TrackOutput trackOutput;
@C.BufferFlags private int bufferFlags;

private long firstReceivedTimestamp;

private int previousSequenceNumber;

private long startTimeOffsetUs;

private int sampleLength;

/** Creates an instance. */
Expand Down

0 comments on commit 177517e

Please sign in to comment.