public final class

DefaultRtpPayloadReaderFactory

extends java.lang.Object

implements RtpPayloadReader.Factory

 java.lang.Object

↳androidx.media3.exoplayer.rtsp.reader.DefaultRtpPayloadReaderFactory

Gradle dependencies

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

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

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

Overview

Default RtpPayloadReader.Factory implementation.

Summary

Constructors
publicDefaultRtpPayloadReaderFactory()

Methods
public RtpPayloadReadercreatePayloadReader(RtpPayloadFormat payloadFormat)

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

Constructors

public DefaultRtpPayloadReaderFactory()

Methods

public RtpPayloadReader createPayloadReader(RtpPayloadFormat payloadFormat)

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.rtsp.reader;

import static androidx.media3.common.util.Assertions.checkNotNull;

import androidx.annotation.Nullable;
import androidx.media3.common.MimeTypes;
import androidx.media3.common.util.UnstableApi;
import androidx.media3.exoplayer.rtsp.RtpPayloadFormat;

/** Default {@link RtpPayloadReader.Factory} implementation. */
@UnstableApi
/* package */ public final class DefaultRtpPayloadReaderFactory
    implements RtpPayloadReader.Factory {

  @Override
  @Nullable
  public RtpPayloadReader createPayloadReader(RtpPayloadFormat payloadFormat) {
    switch (checkNotNull(payloadFormat.format.sampleMimeType)) {
      case MimeTypes.AUDIO_AC3:
        return new RtpAc3Reader(payloadFormat);
      case MimeTypes.AUDIO_AAC:
        return new RtpAacReader(payloadFormat);
      case MimeTypes.VIDEO_H264:
        return new RtpH264Reader(payloadFormat);
      default:
        // No supported reader, returning null.
    }
    return null;
  }
}