Fix formatting in Player.java

This is in preparation for adding an internal-only change near these
lines.

PiperOrigin-RevId: 285403671
This commit is contained in:
andrewlewis 2019-12-13 16:23:48 +00:00 committed by Oliver Woodman
parent 71036a6973
commit d099db6957

View File

@ -42,20 +42,20 @@ import java.lang.annotation.RetentionPolicy;
/** /**
* A media player interface defining traditional high-level functionality, such as the ability to * A media player interface defining traditional high-level functionality, such as the ability to
* play, pause, seek and query properties of the currently playing media. * play, pause, seek and query properties of the currently playing media.
* <p> *
* Some important properties of media players that implement this interface are: * <p>Some important properties of media players that implement this interface are:
*
* <ul> * <ul>
* <li>They can provide a {@link Timeline} representing the structure of the media being played, * <li>They can provide a {@link Timeline} representing the structure of the media being played,
* which can be obtained by calling {@link #getCurrentTimeline()}.</li> * which can be obtained by calling {@link #getCurrentTimeline()}.
* <li>They can provide a {@link TrackGroupArray} defining the currently available tracks, * <li>They can provide a {@link TrackGroupArray} defining the currently available tracks, which
* which can be obtained by calling {@link #getCurrentTrackGroups()}.</li> * can be obtained by calling {@link #getCurrentTrackGroups()}.
* <li>They contain a number of renderers, each of which is able to render tracks of a single * <li>They contain a number of renderers, each of which is able to render tracks of a single type
* type (e.g. audio, video or text). The number of renderers and their respective track types * (e.g. audio, video or text). The number of renderers and their respective track types can
* can be obtained by calling {@link #getRendererCount()} and {@link #getRendererType(int)}. * be obtained by calling {@link #getRendererCount()} and {@link #getRendererType(int)}.
* </li>
* <li>They can provide a {@link TrackSelectionArray} defining which of the currently available * <li>They can provide a {@link TrackSelectionArray} defining which of the currently available
* tracks are selected to be rendered by each renderer. This can be obtained by calling * tracks are selected to be rendered by each renderer. This can be obtained by calling {@link
* {@link #getCurrentTrackSelections()}}.</li> * #getCurrentTrackSelections()}}.
* </ul> * </ul>
*/ */
public interface Player { public interface Player {