public final class

FakeMediaChunk

extends MediaChunk

 java.lang.Object

androidx.media3.exoplayer.source.chunk.Chunk

androidx.media3.exoplayer.source.chunk.MediaChunk

↳androidx.media3.test.utils.FakeMediaChunk

Gradle dependencies

compile group: 'androidx.media3', name: 'media3-test-utils', version: '1.0.0-alpha03'

  • groupId: androidx.media3
  • artifactId: media3-test-utils
  • version: 1.0.0-alpha03

Artifact androidx.media3:media3-test-utils:1.0.0-alpha03 it located at Google repository (https://maven.google.com/)

Overview

Fake MediaChunk.

Summary

Fields
from MediaChunkchunkIndex
from ChunkdataSource, dataSpec, endTimeUs, loadTaskId, startTimeUs, trackFormat, trackSelectionData, trackSelectionReason, type
Constructors
publicFakeMediaChunk(Format trackFormat, long startTimeUs, long endTimeUs)

Creates a fake media chunk.

publicFakeMediaChunk(Format trackFormat, long startTimeUs, long endTimeUs, int selectionReason)

Creates a fake media chunk.

Methods
public voidcancelLoad()

public abstract booleanisLoadCompleted()

Returns whether the chunk has been fully loaded.

public voidload()

from MediaChunkgetNextChunkIndex
from ChunkbytesLoaded, getDurationUs, getResponseHeaders, getUri
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public FakeMediaChunk(Format trackFormat, long startTimeUs, long endTimeUs)

Creates a fake media chunk.

Parameters:

trackFormat: The Format.
startTimeUs: The start time of the media, in microseconds.
endTimeUs: The end time of the media, in microseconds.

public FakeMediaChunk(Format trackFormat, long startTimeUs, long endTimeUs, int selectionReason)

Creates a fake media chunk.

Parameters:

trackFormat: The Format.
startTimeUs: The start time of the media, in microseconds.
endTimeUs: The end time of the media, in microseconds.
selectionReason: One of the .

Methods

public void cancelLoad()

public void load()

public abstract boolean isLoadCompleted()

Returns whether the chunk has been fully loaded.

Source

/*
 * Copyright (C) 2018 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package androidx.media3.test.utils;

import android.net.Uri;
import androidx.media3.common.C;
import androidx.media3.common.Format;
import androidx.media3.common.util.UnstableApi;
import androidx.media3.datasource.DataSource;
import androidx.media3.datasource.DataSpec;
import androidx.media3.datasource.DefaultHttpDataSource;
import androidx.media3.exoplayer.source.chunk.MediaChunk;

/** Fake {@link MediaChunk}. */
@UnstableApi
public final class FakeMediaChunk extends MediaChunk {

  private static final DataSource DATA_SOURCE =
      new DefaultHttpDataSource.Factory().setUserAgent("TEST_AGENT").createDataSource();

  /**
   * Creates a fake media chunk.
   *
   * @param trackFormat The {@link Format}.
   * @param startTimeUs The start time of the media, in microseconds.
   * @param endTimeUs The end time of the media, in microseconds.
   */
  public FakeMediaChunk(Format trackFormat, long startTimeUs, long endTimeUs) {
    this(trackFormat, startTimeUs, endTimeUs, C.SELECTION_REASON_UNKNOWN);
  }

  /**
   * Creates a fake media chunk.
   *
   * @param trackFormat The {@link Format}.
   * @param startTimeUs The start time of the media, in microseconds.
   * @param endTimeUs The end time of the media, in microseconds.
   * @param selectionReason One of the {@link C.SelectionReason selection reasons}.
   */
  public FakeMediaChunk(
      Format trackFormat,
      long startTimeUs,
      long endTimeUs,
      @C.SelectionReason int selectionReason) {
    super(
        DATA_SOURCE,
        new DataSpec(Uri.EMPTY),
        trackFormat,
        selectionReason,
        /* trackSelectionData= */ null,
        startTimeUs,
        endTimeUs,
        /* chunkIndex= */ 0);
  }

  @Override
  public void cancelLoad() {
    // Do nothing.
  }

  @Override
  public void load() {
    // Do nothing.
  }

  @Override
  public boolean isLoadCompleted() {
    return true;
  }
}