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
ee80be92
authored
Sep 28, 2015
by
Oliver Woodman
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix comment typo
parent
e652019b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
extensions/vp9/src/main/java/com/google/android/exoplayer/ext/vp9/LibvpxVideoTrackRenderer.java
extensions/vp9/src/main/java/com/google/android/exoplayer/ext/vp9/LibvpxVideoTrackRenderer.java
View file @
ee80be92
...
...
@@ -219,8 +219,8 @@ public final class LibvpxVideoTrackRenderer extends SampleSourceTrackRenderer {
return
;
}
// If we have not rendered any frame so far (either initially or immediately following a
//
seek), render one frame irrese
pective of the state.
// If we have not rendered any frame so far (either initially or immediately following a
seek),
//
render one frame irres
pective of the state.
if
(!
renderedFirstFrame
)
{
renderBuffer
();
renderedFirstFrame
=
true
;
...
...
@@ -234,8 +234,7 @@ public final class LibvpxVideoTrackRenderer extends SampleSourceTrackRenderer {
if
(
timeToRenderUs
>
11000
)
{
try
{
// Subtracting 10000 rather than 11000 ensures that the sleep time
// will be at least 1ms.
// Subtracting 10000 rather than 11000 ensures that the sleep time will be at least 1ms.
Thread
.
sleep
((
timeToRenderUs
-
10000
)
/
1000
);
}
catch
(
InterruptedException
e
)
{
Thread
.
currentThread
().
interrupt
();
...
...
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