public final class

ServiceDescriptionElement

extends java.lang.Object

 java.lang.Object

↳androidx.media3.exoplayer.dash.manifest.ServiceDescriptionElement

Gradle dependencies

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

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

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

Overview

Represents a service description element.

Summary

Fields
public final longmaxOffsetMs

The maximum live offset in milliseconds, or C.TIME_UNSET if undefined.

public final floatmaxPlaybackSpeed

The maximum factor by which playback can be sped up for live speed adjustment, or C.RATE_UNSET if undefined.

public final longminOffsetMs

The minimum live offset in milliseconds, or C.TIME_UNSET if undefined.

public final floatminPlaybackSpeed

The minimum factor by which playback can be sped up for live speed adjustment, or C.RATE_UNSET if undefined.

public final longtargetOffsetMs

The target live offset in milliseconds, or C.TIME_UNSET if undefined.

Constructors
publicServiceDescriptionElement(long targetOffsetMs, long minOffsetMs, long maxOffsetMs, float minPlaybackSpeed, float maxPlaybackSpeed)

Creates a service description element.

Methods
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Fields

public final long targetOffsetMs

The target live offset in milliseconds, or C.TIME_UNSET if undefined.

public final long minOffsetMs

The minimum live offset in milliseconds, or C.TIME_UNSET if undefined.

public final long maxOffsetMs

The maximum live offset in milliseconds, or C.TIME_UNSET if undefined.

public final float minPlaybackSpeed

The minimum factor by which playback can be sped up for live speed adjustment, or C.RATE_UNSET if undefined.

public final float maxPlaybackSpeed

The maximum factor by which playback can be sped up for live speed adjustment, or C.RATE_UNSET if undefined.

Constructors

public ServiceDescriptionElement(long targetOffsetMs, long minOffsetMs, long maxOffsetMs, float minPlaybackSpeed, float maxPlaybackSpeed)

Creates a service description element.

Parameters:

targetOffsetMs: The target live offset in milliseconds, or C.TIME_UNSET if undefined.
minOffsetMs: The minimum live offset in milliseconds, or C.TIME_UNSET if undefined.
maxOffsetMs: The maximum live offset in milliseconds, or C.TIME_UNSET if undefined.
minPlaybackSpeed: The minimum factor by which playback can be sped up for live speed adjustment, or C.RATE_UNSET if undefined.
maxPlaybackSpeed: The maximum factor by which playback can be sped up for live speed adjustment, or C.RATE_UNSET if undefined.

Source

/*
 * Copyright 2020 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.dash.manifest;

import androidx.media3.common.C;
import androidx.media3.common.util.UnstableApi;

/** Represents a service description element. */
@UnstableApi
public final class ServiceDescriptionElement {

  /** The target live offset in milliseconds, or {@link C#TIME_UNSET} if undefined. */
  public final long targetOffsetMs;
  /** The minimum live offset in milliseconds, or {@link C#TIME_UNSET} if undefined. */
  public final long minOffsetMs;
  /** The maximum live offset in milliseconds, or {@link C#TIME_UNSET} if undefined. */
  public final long maxOffsetMs;
  /**
   * The minimum factor by which playback can be sped up for live speed adjustment, or {@link
   * C#RATE_UNSET} if undefined.
   */
  public final float minPlaybackSpeed;
  /**
   * The maximum factor by which playback can be sped up for live speed adjustment, or {@link
   * C#RATE_UNSET} if undefined.
   */
  public final float maxPlaybackSpeed;

  /**
   * Creates a service description element.
   *
   * @param targetOffsetMs The target live offset in milliseconds, or {@link C#TIME_UNSET} if
   *     undefined.
   * @param minOffsetMs The minimum live offset in milliseconds, or {@link C#TIME_UNSET} if
   *     undefined.
   * @param maxOffsetMs The maximum live offset in milliseconds, or {@link C#TIME_UNSET} if
   *     undefined.
   * @param minPlaybackSpeed The minimum factor by which playback can be sped up for live speed
   *     adjustment, or {@link C#RATE_UNSET} if undefined.
   * @param maxPlaybackSpeed The maximum factor by which playback can be sped up for live speed
   *     adjustment, or {@link C#RATE_UNSET} if undefined.
   */
  public ServiceDescriptionElement(
      long targetOffsetMs,
      long minOffsetMs,
      long maxOffsetMs,
      float minPlaybackSpeed,
      float maxPlaybackSpeed) {
    this.targetOffsetMs = targetOffsetMs;
    this.minOffsetMs = minOffsetMs;
    this.maxOffsetMs = maxOffsetMs;
    this.minPlaybackSpeed = minPlaybackSpeed;
    this.maxPlaybackSpeed = maxPlaybackSpeed;
  }
}