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
c613e502
authored
Nov 15, 2019
by
Oliver Woodman
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge pull request #6650 from stanionascu:dev-v2-dv
PiperOrigin-RevId: 280573887
parents
5579cc89
6d9c7072
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
library/core/src/main/java/com/google/android/exoplayer2/video/DolbyVisionConfig.java
library/core/src/main/java/com/google/android/exoplayer2/video/DolbyVisionConfig.java
View file @
c613e502
...
@@ -36,7 +36,7 @@ public final class DolbyVisionConfig {
...
@@ -36,7 +36,7 @@ public final class DolbyVisionConfig {
int
dvProfile
=
(
profileData
>>
1
);
int
dvProfile
=
(
profileData
>>
1
);
int
dvLevel
=
((
profileData
&
0x1
)
<<
5
)
|
((
data
.
readUnsignedByte
()
>>
3
)
&
0x1F
);
int
dvLevel
=
((
profileData
&
0x1
)
<<
5
)
|
((
data
.
readUnsignedByte
()
>>
3
)
&
0x1F
);
String
codecsPrefix
;
String
codecsPrefix
;
if
(
dvProfile
==
4
||
dvProfile
==
5
)
{
if
(
dvProfile
==
4
||
dvProfile
==
5
||
dvProfile
==
7
)
{
codecsPrefix
=
"dvhe"
;
codecsPrefix
=
"dvhe"
;
}
else
if
(
dvProfile
==
8
)
{
}
else
if
(
dvProfile
==
8
)
{
codecsPrefix
=
"hev1"
;
codecsPrefix
=
"hev1"
;
...
...
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