Minor doc fixes.

This commit is contained in:
Oliver Woodman 2014-12-12 14:13:58 +00:00
parent 9d4e177347
commit 81bf68b1cb
2 changed files with 2 additions and 5 deletions

View File

@ -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 {
* *
* @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)

View File

@ -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 {