Class 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 Detail

      • OggOpusAudioPacketizer

        public OggOpusAudioPacketizer()
        Deprecated.
        Creates an instance.
    • Method Detail

      • packetize

        public void packetize​(DecoderInputBuffer inputBuffer,
                              List<byte[]> initializationData)
        Deprecated.
        Packetizes the audio data between the position and limit of the inputBuffer.
        Parameters:
        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.
        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.