public abstract class

BaseMediaChunk

extends MediaChunk

 java.lang.Object

androidx.media3.exoplayer.source.chunk.Chunk

androidx.media3.exoplayer.source.chunk.MediaChunk

↳androidx.media3.exoplayer.source.chunk.BaseMediaChunk

Subclasses:

ContainerMediaChunk, SingleSampleMediaChunk

Gradle dependencies

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

  • groupId: androidx.media3
  • artifactId: media3-exoplayer
  • version: 1.0.0-alpha03

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

Overview

A base implementation of MediaChunk that outputs to a BaseMediaChunkOutput.

Summary

Fields
public final longclippedEndTimeUs

The time from which output will end, or C.TIME_UNSET if output will end at the end of the chunk.

public final longclippedStartTimeUs

The time from which output will begin, or C.TIME_UNSET if output will begin from the start of the chunk.

from MediaChunkchunkIndex
from ChunkdataSource, dataSpec, endTimeUs, loadTaskId, startTimeUs, trackFormat, trackSelectionData, trackSelectionReason, type
Constructors
publicBaseMediaChunk(DataSource dataSource, DataSpec dataSpec, Format trackFormat, int trackSelectionReason, java.lang.Object trackSelectionData, long startTimeUs, long endTimeUs, long clippedStartTimeUs, long clippedEndTimeUs, long chunkIndex)

Methods
public final intgetFirstSampleIndex(int trackIndex)

Returns the index of the first sample in the specified track of the output that will originate from this chunk.

protected final BaseMediaChunkOutputgetOutput()

Returns the output most recently passed to BaseMediaChunk.init(BaseMediaChunkOutput).

public voidinit(BaseMediaChunkOutput output)

Initializes the chunk for loading, setting the BaseMediaChunkOutput that will receive samples as they are loaded.

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

Fields

public final long clippedStartTimeUs

The time from which output will begin, or C.TIME_UNSET if output will begin from the start of the chunk.

public final long clippedEndTimeUs

The time from which output will end, or C.TIME_UNSET if output will end at the end of the chunk.

Constructors

public BaseMediaChunk(DataSource dataSource, DataSpec dataSpec, Format trackFormat, int trackSelectionReason, java.lang.Object trackSelectionData, long startTimeUs, long endTimeUs, long clippedStartTimeUs, long clippedEndTimeUs, long chunkIndex)

Parameters:

dataSource: The source from which the data should be loaded.
dataSpec: Defines the data to be loaded.
trackFormat: See Chunk.trackFormat.
trackSelectionReason: See Chunk.trackSelectionReason.
trackSelectionData: See Chunk.trackSelectionData.
startTimeUs: The start time of the media contained by the chunk, in microseconds.
endTimeUs: The end time of the media contained by the chunk, in microseconds.
clippedStartTimeUs: The time in the chunk from which output will begin, or C.TIME_UNSET to output from the start of the chunk.
clippedEndTimeUs: The time in the chunk from which output will end, or C.TIME_UNSET to output to the end of the chunk.
chunkIndex: The index of the chunk, or C.INDEX_UNSET if it is not known.

Methods

public void init(BaseMediaChunkOutput output)

Initializes the chunk for loading, setting the BaseMediaChunkOutput that will receive samples as they are loaded.

Parameters:

output: The output that will receive the loaded media samples.

public final int getFirstSampleIndex(int trackIndex)

Returns the index of the first sample in the specified track of the output that will originate from this chunk.

protected final BaseMediaChunkOutput getOutput()

Returns the output most recently passed to BaseMediaChunk.init(BaseMediaChunkOutput).

Source

/*
 * Copyright (C) 2016 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.exoplayer.source.chunk;

import androidx.annotation.Nullable;
import androidx.media3.common.C;
import androidx.media3.common.Format;
import androidx.media3.common.util.Assertions;
import androidx.media3.common.util.UnstableApi;
import androidx.media3.datasource.DataSource;
import androidx.media3.datasource.DataSpec;
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;

/** A base implementation of {@link MediaChunk} that outputs to a {@link BaseMediaChunkOutput}. */
@UnstableApi
public abstract class BaseMediaChunk extends MediaChunk {

  /**
   * The time from which output will begin, or {@link C#TIME_UNSET} if output will begin from the
   * start of the chunk.
   */
  public final long clippedStartTimeUs;
  /**
   * The time from which output will end, or {@link C#TIME_UNSET} if output will end at the end of
   * the chunk.
   */
  public final long clippedEndTimeUs;

  private @MonotonicNonNull BaseMediaChunkOutput output;
  private int @MonotonicNonNull [] firstSampleIndices;

  /**
   * @param dataSource The source from which the data should be loaded.
   * @param dataSpec Defines the data to be loaded.
   * @param trackFormat See {@link #trackFormat}.
   * @param trackSelectionReason See {@link #trackSelectionReason}.
   * @param trackSelectionData See {@link #trackSelectionData}.
   * @param startTimeUs The start time of the media contained by the chunk, in microseconds.
   * @param endTimeUs The end time of the media contained by the chunk, in microseconds.
   * @param clippedStartTimeUs The time in the chunk from which output will begin, or {@link
   *     C#TIME_UNSET} to output from the start of the chunk.
   * @param clippedEndTimeUs The time in the chunk from which output will end, or {@link
   *     C#TIME_UNSET} to output to the end of the chunk.
   * @param chunkIndex The index of the chunk, or {@link C#INDEX_UNSET} if it is not known.
   */
  public BaseMediaChunk(
      DataSource dataSource,
      DataSpec dataSpec,
      Format trackFormat,
      @C.SelectionReason int trackSelectionReason,
      @Nullable Object trackSelectionData,
      long startTimeUs,
      long endTimeUs,
      long clippedStartTimeUs,
      long clippedEndTimeUs,
      long chunkIndex) {
    super(
        dataSource,
        dataSpec,
        trackFormat,
        trackSelectionReason,
        trackSelectionData,
        startTimeUs,
        endTimeUs,
        chunkIndex);
    this.clippedStartTimeUs = clippedStartTimeUs;
    this.clippedEndTimeUs = clippedEndTimeUs;
  }

  /**
   * Initializes the chunk for loading, setting the {@link BaseMediaChunkOutput} that will receive
   * samples as they are loaded.
   *
   * @param output The output that will receive the loaded media samples.
   */
  public void init(BaseMediaChunkOutput output) {
    this.output = output;
    firstSampleIndices = output.getWriteIndices();
  }

  /**
   * Returns the index of the first sample in the specified track of the output that will originate
   * from this chunk.
   */
  public final int getFirstSampleIndex(int trackIndex) {
    return Assertions.checkStateNotNull(firstSampleIndices)[trackIndex];
  }

  /** Returns the output most recently passed to {@link #init(BaseMediaChunkOutput)}. */
  protected final BaseMediaChunkOutput getOutput() {
    return Assertions.checkStateNotNull(output);
  }
}