Commit 81bf68b1 by Oliver Woodman

Minor doc fixes.

parent 9d4e1773
...@@ -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)
......
...@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment