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
0292f82d
authored
Mar 21, 2022
by
andrewlewis
Committed by
Ian Baker
Mar 21, 2022
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix end of stream detection for SSIM helper
PiperOrigin-RevId: 436165237
parent
9e62ea3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
libraries/transformer/src/androidTest/java/androidx/media3/transformer/SsimHelper.java
libraries/transformer/src/androidTest/java/androidx/media3/transformer/SsimHelper.java
View file @
0292f82d
...
...
@@ -279,7 +279,10 @@ public final class SsimHelper {
sampleSize
,
mediaExtractor
.
getSampleTime
(),
mediaExtractor
.
getSampleFlags
());
hasReadEndOfInputStream
=
!
mediaExtractor
.
advance
();
// MediaExtractor.advance does not reliably return false for end-of-stream, so check sample
// metadata instead as a more reliable signal. See [internal: b/121204004].
mediaExtractor
.
advance
();
hasReadEndOfInputStream
=
mediaExtractor
.
getSampleTime
()
==
-
1
;
return
true
;
}
...
...
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