public final class

Metadata

extends java.lang.Object

 java.lang.Object

↳androidx.media3.common.Metadata

Gradle dependencies

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

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

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

Overview

A collection of metadata entries.

Summary

Fields
public static final <any>CREATOR

Constructors
publicMetadata(java.util.List<Metadata.Entry> entries)

publicMetadata(Metadata.Entry entries[])

Methods
public MetadatacopyWithAppendedEntries(Metadata.Entry entriesToAppend[])

Returns a copy of this metadata with the specified entries appended.

public MetadatacopyWithAppendedEntriesFrom(Metadata other)

Returns a copy of this metadata with the entries of the specified metadata appended.

public intdescribeContents()

public booleanequals(java.lang.Object obj)

public Metadata.Entryget(int index)

Returns the entry at the specified index.

public inthashCode()

public intlength()

Returns the number of metadata entries.

public java.lang.StringtoString()

public voidwriteToParcel(Parcel dest, int flags)

from java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait

Fields

public static final <any> CREATOR

Constructors

public Metadata(Metadata.Entry entries[])

Parameters:

entries: The metadata entries.

public Metadata(java.util.List<Metadata.Entry> entries)

Parameters:

entries: The metadata entries.

Methods

public int length()

Returns the number of metadata entries.

public Metadata.Entry get(int index)

Returns the entry at the specified index.

Parameters:

index: The index of the entry.

Returns:

The entry at the specified index.

public Metadata copyWithAppendedEntriesFrom(Metadata other)

Returns a copy of this metadata with the entries of the specified metadata appended. Returns this instance if other is null.

Parameters:

other: The metadata that holds the entries to append. If null, this methods returns this instance.

Returns:

The metadata instance with the appended entries.

public Metadata copyWithAppendedEntries(Metadata.Entry entriesToAppend[])

Returns a copy of this metadata with the specified entries appended.

Parameters:

entriesToAppend: The entries to append.

Returns:

The metadata instance with the appended entries.

public boolean equals(java.lang.Object obj)

public int hashCode()

public java.lang.String toString()

public int describeContents()

public void writeToParcel(Parcel dest, int flags)

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.common;

import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.Nullable;
import androidx.media3.common.util.UnstableApi;
import androidx.media3.common.util.Util;
import java.util.Arrays;
import java.util.List;

/** A collection of metadata entries. */
@UnstableApi
public final class Metadata implements Parcelable {

  /** A metadata entry. */
  public interface Entry extends Parcelable {

    /**
     * Returns the {@link Format} that can be used to decode the wrapped metadata in {@link
     * #getWrappedMetadataBytes()}, or null if this Entry doesn't contain wrapped metadata.
     */
    @Nullable
    default Format getWrappedMetadataFormat() {
      return null;
    }

    /**
     * Returns the bytes of the wrapped metadata in this Entry, or null if it doesn't contain
     * wrapped metadata.
     */
    @Nullable
    default byte[] getWrappedMetadataBytes() {
      return null;
    }

    /**
     * Updates the {@link MediaMetadata.Builder} with the type specific values stored in this Entry.
     *
     * <p>The order of the {@link Entry} objects in the {@link Metadata} matters. If two {@link
     * Entry} entries attempt to populate the same {@link MediaMetadata} field, then the last one in
     * the list is used.
     *
     * @param builder The builder to be updated.
     */
    default void populateMediaMetadata(MediaMetadata.Builder builder) {}
  }

  private final Entry[] entries;

  /** @param entries The metadata entries. */
  public Metadata(Entry... entries) {
    this.entries = entries;
  }

  /** @param entries The metadata entries. */
  public Metadata(List<? extends Entry> entries) {
    this.entries = entries.toArray(new Entry[0]);
  }

  /* package */ Metadata(Parcel in) {
    entries = new Metadata.Entry[in.readInt()];
    for (int i = 0; i < entries.length; i++) {
      entries[i] = in.readParcelable(Entry.class.getClassLoader());
    }
  }

  /** Returns the number of metadata entries. */
  public int length() {
    return entries.length;
  }

  /**
   * Returns the entry at the specified index.
   *
   * @param index The index of the entry.
   * @return The entry at the specified index.
   */
  public Metadata.Entry get(int index) {
    return entries[index];
  }

  /**
   * Returns a copy of this metadata with the entries of the specified metadata appended. Returns
   * this instance if {@code other} is null.
   *
   * @param other The metadata that holds the entries to append. If null, this methods returns this
   *     instance.
   * @return The metadata instance with the appended entries.
   */
  public Metadata copyWithAppendedEntriesFrom(@Nullable Metadata other) {
    if (other == null) {
      return this;
    }
    return copyWithAppendedEntries(other.entries);
  }

  /**
   * Returns a copy of this metadata with the specified entries appended.
   *
   * @param entriesToAppend The entries to append.
   * @return The metadata instance with the appended entries.
   */
  public Metadata copyWithAppendedEntries(Entry... entriesToAppend) {
    if (entriesToAppend.length == 0) {
      return this;
    }
    return new Metadata(Util.nullSafeArrayConcatenation(entries, entriesToAppend));
  }

  @Override
  public boolean equals(@Nullable Object obj) {
    if (this == obj) {
      return true;
    }
    if (obj == null || getClass() != obj.getClass()) {
      return false;
    }
    Metadata other = (Metadata) obj;
    return Arrays.equals(entries, other.entries);
  }

  @Override
  public int hashCode() {
    return Arrays.hashCode(entries);
  }

  @Override
  public String toString() {
    return "entries=" + Arrays.toString(entries);
  }

  // Parcelable implementation.

  @Override
  public int describeContents() {
    return 0;
  }

  @Override
  public void writeToParcel(Parcel dest, int flags) {
    dest.writeInt(entries.length);
    for (Entry entry : entries) {
      dest.writeParcelable(entry, 0);
    }
  }

  public static final Parcelable.Creator<Metadata> CREATOR =
      new Parcelable.Creator<Metadata>() {
        @Override
        public Metadata createFromParcel(Parcel in) {
          return new Metadata(in);
        }

        @Override
        public Metadata[] newArray(int size) {
          return new Metadata[size];
        }
      };
}