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
dfc424db
authored
May 09, 2022
by
Rakesh Kumar
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix review comment in RTPH263Reader
Change-Id: I6ae45dc710245769f36130ead4077d8e9980bf54
parent
aae9f23c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpH263Reader.java
libraries/exoplayer_rtsp/src/main/java/androidx/media3/exoplayer/rtsp/reader/RtpH263Reader.java
View file @
dfc424db
...
...
@@ -178,7 +178,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
* >Android's software H263 decoder</a>.
*/
long
shortHeader
=
data
.
readUnsignedInt
();
if
(((
shortHeader
>>
10
)
&
0x
fff
f
)
==
0x20
)
{
if
(((
shortHeader
>>
10
)
&
0x
3
f
)
==
0x20
)
{
int
header
=
data
.
peekUnsignedByte
();
int
vopType
=
((
header
>>
1
)
&
0x1
);
if
(!
gotResolution
&&
vopType
==
I_VOP
)
{
...
...
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