Class OggOpusAudioPacketizer
- java.lang.Object
-
- com.google.android.exoplayer2.audio.OggOpusAudioPacketizer
-
@Deprecated public final class OggOpusAudioPacketizer extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.A packetizer that encapsulates Opus audio encodings in Ogg packets.
-
-
Constructor Summary
Constructors Constructor Description OggOpusAudioPacketizer()
Deprecated.Creates an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
packetize(DecoderInputBuffer inputBuffer, List<byte[]> initializationData)
Deprecated.Packetizes the audio data between the position and limit of theinputBuffer
.void
reset()
Deprecated.Resets the packetizer.
-
-
-
Method Detail
-
packetize
public void packetize(DecoderInputBuffer inputBuffer, List<byte[]> initializationData)
Deprecated.Packetizes the audio data between the position and limit of theinputBuffer
.- Parameters:
inputBuffer
- The input buffer to packetize. It must be a directByteBuffer
with LITTLE_ENDIAN order. The contents will be overwritten with the Ogg packet. The caller retains ownership of the provided buffer.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()
Deprecated.Resets the packetizer.
-
-