OggOpusAudioPacketizer


@UnstableApi
public final class OggOpusAudioPacketizer


A packetizer that encapsulates Opus audio encodings in Ogg packets.

Summary

Public constructors

Creates an instance.

Public methods

void
packetize(
    DecoderInputBuffer inputBuffer,
    List<byte[]> initializationData
)

Packetizes the audio data between the position and limit of the inputBuffer.

void

Resets the packetizer.

Public constructors

OggOpusAudioPacketizer

public OggOpusAudioPacketizer()

Creates an instance.

Public methods

packetize

public void packetize(
    DecoderInputBuffer inputBuffer,
    List<byte[]> initializationData
)

Packetizes the audio data between the position and limit of the inputBuffer.

Parameters
DecoderInputBuffer inputBuffer

The input buffer to packetize. It must be a direct ByteBuffer with LITTLE_ENDIAN order. The contents will be overwritten with the Ogg packet. The caller retains ownership of the provided buffer.

List<byte[]> initializationData

contains set-up data for the Opus Decoder. The data will be provided in an Ogg ID Header Page prepended to the bitstream. The list should contain either one or three byte arrays. The first item is the payload for the Ogg ID Header Page. If three items, then it also contains the Opus pre-skip and seek pre-roll values in that order.

reset

public void reset()

Resets the packetizer.