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(Packetizes the audio data between the position and limit of the |
void |
reset()Resets the packetizer. |
Public constructors
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 |
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. |