Skip to content

Commit

Permalink
Fix two more unresolved SVGs in Timeline.Window and Timeline.Period
Browse files Browse the repository at this point in the history
These were missed in 1034250

#minor-release

PiperOrigin-RevId: 541860649
(cherry picked from commit 273953e)
  • Loading branch information
icbaker authored and tof-tof committed Jun 23, 2023
1 parent fb9871f commit 7d61050
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
import java.util.ArrayList;
import java.util.List;

// TODO(b/276289331): Revert to media3-hosted SVG links below once they're available on
// developer.android.com.

/**
* A flexible representation of the structure of media. A timeline is able to represent the
* structure of a wide variety of media, from simple cases like a single media file through to
Expand Down Expand Up @@ -143,8 +146,6 @@
* href="https://developer.android.com/guide/topics/media/media3/getting-started/migration-guide">the
* migration guide</a> for more details, including a script to help with the migration.
*/
// TODO(b/276289331): Revert to media3-hosted SVG links above once they're available on
// developer.android.com.
@Deprecated
public abstract class Timeline implements Bundleable {

Expand All @@ -155,8 +156,9 @@ public abstract class Timeline implements Bundleable {
* shows some of the information defined by a window, as well as how this information relates to
* corresponding {@link Period Periods} in the timeline.
*
* <p style="align:center"><img src="doc-files/timeline-window.svg" alt="Information defined by a
* timeline window">
* <p style="align:center"><img
* src="https://exoplayer.dev/doc/reference/com/google/android/exoplayer2/doc-files/timeline-window.svg"
* alt="Information defined by a timeline window">
*/
public static final class Window implements Bundleable {

Expand Down Expand Up @@ -561,8 +563,9 @@ private static Window fromBundle(Bundle bundle) {
* <p>The figure below shows some of the information defined by a period, as well as how this
* information relates to a corresponding {@link Window} in the timeline.
*
* <p style="align:center"><img src="doc-files/timeline-period.svg" alt="Information defined by a
* period">
* <p style="align:center"><img
* src="https://exoplayer.dev/doc/reference/com/google/android/exoplayer2/doc-files/timeline-period.svg"
* alt="Information defined by a period">
*/
public static final class Period implements Bundleable {

Expand Down

0 comments on commit 7d61050

Please sign in to comment.