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
81bf68b1
authored
Dec 12, 2014
by
Oliver Woodman
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Minor doc fixes.
parent
9d4e1773
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
library/src/main/java/com/google/android/exoplayer/TrackRenderer.java
library/src/main/java/com/google/android/exoplayer/text/webvtt/WebvttParser.java
library/src/main/java/com/google/android/exoplayer/TrackRenderer.java
View file @
81bf68b1
...
@@ -18,8 +18,6 @@ package com.google.android.exoplayer;
...
@@ -18,8 +18,6 @@ package com.google.android.exoplayer;
import
com.google.android.exoplayer.ExoPlayer.ExoPlayerComponent
;
import
com.google.android.exoplayer.ExoPlayer.ExoPlayerComponent
;
import
com.google.android.exoplayer.util.Assertions
;
import
com.google.android.exoplayer.util.Assertions
;
import
android.os.SystemClock
;
/**
/**
* Renders a single component of media.
* Renders a single component of media.
*
*
...
@@ -293,8 +291,8 @@ public abstract class TrackRenderer implements ExoPlayerComponent {
...
@@ -293,8 +291,8 @@ public abstract class TrackRenderer implements ExoPlayerComponent {
*
*
* @param positionUs The current media time in microseconds, measured at the start of the
* @param positionUs The current media time in microseconds, measured at the start of the
* current iteration of the rendering loop.
* current iteration of the rendering loop.
* @param elapsedRealtimeUs {@link
SystemClock#elapsedRealtime()} in microseconds, measured at
* @param elapsedRealtimeUs {@link
android.os.SystemClock#elapsedRealtime()} in microseconds,
* the start of the current iteration of the rendering loop.
*
measured at
the start of the current iteration of the rendering loop.
* @throws ExoPlaybackException If an error occurs.
* @throws ExoPlaybackException If an error occurs.
*/
*/
protected
abstract
void
doSomeWork
(
long
positionUs
,
long
elapsedRealtimeUs
)
protected
abstract
void
doSomeWork
(
long
positionUs
,
long
elapsedRealtimeUs
)
...
...
library/src/main/java/com/google/android/exoplayer/text/webvtt/WebvttParser.java
View file @
81bf68b1
...
@@ -32,7 +32,6 @@ import java.util.regex.Pattern;
...
@@ -32,7 +32,6 @@ import java.util.regex.Pattern;
* A simple WebVTT parser.
* A simple WebVTT parser.
* <p>
* <p>
* @see <a href="http://dev.w3.org/html5/webvtt">WebVTT specification</a>
* @see <a href="http://dev.w3.org/html5/webvtt">WebVTT specification</a>
* <p>
*/
*/
public
class
WebvttParser
implements
SubtitleParser
{
public
class
WebvttParser
implements
SubtitleParser
{
...
...
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