Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ed60c885
authored
Aug 03, 2022
by
claincly
Committed by
tonihei
Aug 03, 2022
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Clean up NOP constructor lines in RTP readers
PiperOrigin-RevId: 465067191
parent
c5d1940f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
8 deletions
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpMpeg4Reader.java
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpVp8Reader.java
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpVp9Reader.java
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpMpeg4Reader.java
View file @
ed60c885
...
...
@@ -62,7 +62,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
this
.
payloadFormat
=
payloadFormat
;
firstReceivedTimestamp
=
C
.
TIME_UNSET
;
previousSequenceNumber
=
C
.
INDEX_UNSET
;
sampleLength
=
0
;
}
@Override
...
...
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpVp8Reader.java
View file @
ed60c885
...
...
@@ -74,9 +74,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
fragmentedSampleTimeUs
=
C
.
TIME_UNSET
;
// The start time offset must be 0 until the first seek.
startTimeOffsetUs
=
0
;
gotFirstPacketOfVp8Frame
=
false
;
isKeyFrame
=
false
;
isOutputFormatSet
=
false
;
}
@Override
...
...
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpVp9Reader.java
View file @
ed60c885
...
...
@@ -81,10 +81,6 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
previousSequenceNumber
=
C
.
INDEX_UNSET
;
width
=
C
.
LENGTH_UNSET
;
height
=
C
.
LENGTH_UNSET
;
// TODO(b/240318842) Clean up VP8/VP9 reader.
gotFirstPacketOfVp9Frame
=
false
;
reportedOutputFormat
=
false
;
isKeyFrame
=
false
;
}
@Override
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment