Skip to content

Commit

Permalink
Replace fully qualified link annotation
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 393081803
  • Loading branch information
marcbaechinger committed Aug 26, 2021
1 parent b42aa4c commit 1d36083
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Expand Up @@ -51,6 +51,7 @@
import com.google.android.exoplayer2.extractor.mp4.Mp4Extractor;
import com.google.android.exoplayer2.metadata.MetadataOutput;
import com.google.android.exoplayer2.source.DefaultMediaSourceFactory;
import com.google.android.exoplayer2.source.MediaSource;
import com.google.android.exoplayer2.source.MediaSourceFactory;
import com.google.android.exoplayer2.source.TrackGroupArray;
import com.google.android.exoplayer2.text.TextOutput;
Expand Down Expand Up @@ -407,8 +408,8 @@ public void setListener(Transformer.Listener listener) {
* <p>Concurrent transformations on the same Transformer object are not allowed.
*
* <p>The output can contain at most one video track and one audio track. Other track types are
* ignored. For adaptive bitrate {@link com.google.android.exoplayer2.source.MediaSource media
* sources}, the highest bitrate video and audio streams are selected.
* ignored. For adaptive bitrate {@link MediaSource media sources}, the highest bitrate video and
* audio streams are selected.
*
* @param mediaItem The {@link MediaItem} to transform. The supported sample formats depend on the
* {@link Muxer} and on the output container format. For the {@link FrameworkMuxer}, they are
Expand All @@ -432,8 +433,8 @@ public void startTransformation(MediaItem mediaItem, String path) throws IOExcep
* <p>Concurrent transformations on the same Transformer object are not allowed.
*
* <p>The output can contain at most one video track and one audio track. Other track types are
* ignored. For adaptive bitrate {@link com.google.android.exoplayer2.source.MediaSource media
* sources}, the highest bitrate video and audio streams are selected.
* ignored. For adaptive bitrate {@link MediaSource media sources}, the highest bitrate video and
* audio streams are selected.
*
* @param mediaItem The {@link MediaItem} to transform. The supported sample formats depend on the
* {@link Muxer} and on the output container format. For the {@link FrameworkMuxer}, they are
Expand Down
Expand Up @@ -19,16 +19,17 @@
import android.net.Uri;
import com.google.android.exoplayer2.C;
import com.google.android.exoplayer2.source.chunk.BaseMediaChunkIterator;
import com.google.android.exoplayer2.source.chunk.MediaChunkIterator;
import com.google.android.exoplayer2.upstream.DataSpec;

/** Fake {@link com.google.android.exoplayer2.source.chunk.MediaChunkIterator}. */
/** Fake {@link MediaChunkIterator}. */
public final class FakeMediaChunkIterator extends BaseMediaChunkIterator {

private final long[] chunkTimeBoundariesSec;
private final long[] chunkLengths;

/**
* Creates a fake {@link com.google.android.exoplayer2.source.chunk.MediaChunkIterator}.
* Creates a fake {@link MediaChunkIterator}.
*
* @param chunkTimeBoundariesSec An array containing the time boundaries where one chunk ends and
* the next one starts. The first value is the start time of the first chunk and the last
Expand Down

0 comments on commit 1d36083

Please sign in to comment.