Interface IZegoMediaPlayerAudioPlayCallback


  • public interface IZegoMediaPlayerAudioPlayCallback
    多实例媒体播放器的音频数据回调接口,仅 PCM 数据有效。 该接口为同步接口,SDK 在该函数返回后,会直接使用该内存中的数据进行混流。
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onPlayAudioData​(java.nio.ByteBuffer data, int sample_rate, int channels, int bit_depth, int playerIndex)
      音频数据回调接口,同步回调,SDK 会直接使用该内存中的数据
    • Method Detail

      • onPlayAudioData

        void onPlayAudioData​(java.nio.ByteBuffer data,
                             int sample_rate,
                             int channels,
                             int bit_depth,
                             int playerIndex)
        音频数据回调接口,同步回调,SDK 会直接使用该内存中的数据
        Parameters:
        data - 音频数据
        sample_rate - 采样率
        channels - 通道数
        bit_depth - 位深
        playerIndex - 播放器序号