Commit 7d61050f by ibaker Committed by Tofunmi Adigun-Hameed

Fix two more unresolved SVGs in `Timeline.Window` and `Timeline.Period`

These were missed in https://github.com/google/ExoPlayer/commit/10342507f7c2e167e95365609ea584d227bc9b5d

#minor-release

PiperOrigin-RevId: 541860649
(cherry picked from commit 273953e79c0d53ccdf6344074e1d777d7ee93185)
parent fb9871f7
...@@ -37,6 +37,9 @@ import com.google.errorprone.annotations.InlineMe; ...@@ -37,6 +37,9 @@ import com.google.errorprone.annotations.InlineMe;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; 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 * 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 * structure of a wide variety of media, from simple cases like a single media file through to
...@@ -143,8 +146,6 @@ import java.util.List; ...@@ -143,8 +146,6 @@ import java.util.List;
* href="https://developer.android.com/guide/topics/media/media3/getting-started/migration-guide">the * 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. * 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 @Deprecated
public abstract class Timeline implements Bundleable { public abstract class Timeline implements Bundleable {
...@@ -155,8 +156,9 @@ public abstract class Timeline implements Bundleable { ...@@ -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 * shows some of the information defined by a window, as well as how this information relates to
* corresponding {@link Period Periods} in the timeline. * corresponding {@link Period Periods} in the timeline.
* *
* <p style="align:center"><img src="doc-files/timeline-window.svg" alt="Information defined by a * <p style="align:center"><img
* timeline window"> * 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 { public static final class Window implements Bundleable {
...@@ -561,8 +563,9 @@ public abstract class Timeline implements Bundleable { ...@@ -561,8 +563,9 @@ public abstract class Timeline implements Bundleable {
* <p>The figure below shows some of the information defined by a period, as well as how this * <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. * 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 * <p style="align:center"><img
* period"> * 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 { public static final class Period implements Bundleable {
......
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