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
66f1c044
authored
Apr 14, 2020
by
olly
Committed by
Ian Baker
Apr 15, 2020
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix capabilities check for low frame-rate content
Issue: #6054 Issue: #474 PiperOrigin-RevId: 306437452
parent
edc25ddc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
library/core/src/main/java/com/google/android/exoplayer2/mediacodec/MediaCodecInfo.java
library/core/src/main/java/com/google/android/exoplayer2/mediacodec/MediaCodecInfo.java
View file @
66f1c044
...
@@ -547,7 +547,9 @@ public final class MediaCodecInfo {
...
@@ -547,7 +547,9 @@ public final class MediaCodecInfo {
width
=
alignedSize
.
x
;
width
=
alignedSize
.
x
;
height
=
alignedSize
.
y
;
height
=
alignedSize
.
y
;
if
(
frameRate
==
Format
.
NO_VALUE
||
frameRate
<=
0
)
{
// VideoCapabilities.areSizeAndRateSupported incorrectly returns false if frameRate < 1 on some
// versions of Android, so we only check the size in this case [Internal ref: b/153940404].
if
(
frameRate
==
Format
.
NO_VALUE
||
frameRate
<
1
)
{
return
capabilities
.
isSizeSupported
(
width
,
height
);
return
capabilities
.
isSizeSupported
(
width
,
height
);
}
else
{
}
else
{
// The signaled frame rate may be slightly higher than the actual frame rate, so we take the
// The signaled frame rate may be slightly higher than the actual frame rate, so we take the
...
...
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