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 androidx@1034250

#minor-release

PiperOrigin-RevId: 541860649
  • Loading branch information
icbaker committed Jun 20, 2023
1 parent 4cb5f38 commit 71f7322
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 @@ -138,8 +141,6 @@
* <p>This case includes mid-roll ad groups, which are defined as part of the timeline's single
* period. The period can be queried for information about the ad groups and the ads they contain.
*/
// TODO(b/276289331): Revert to media3-hosted SVG links above once they're available on
// developer.android.com.
public abstract class Timeline implements Bundleable {

/**
Expand All @@ -149,8 +150,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 @@ -557,8 +559,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 71f7322

Please sign in to comment.