onProcessPlayBackAudioFrame method

FutureOr<int> onProcessPlayBackAudioFrame(
  1. IAudioFrame audioFrame
)

@detail callback @author majun.lvhiei @brief Returns the address of the locally captured audio frame for custom processing. @param audioFrame The address of the audio frame. See IAudioFrame{@link #IAudioFrame} @note After calling enableAudioProcessor{@link #RTCEngine#enableAudioProcessor} with mixed remote audio, you will receive this callback every 10 ms.

Implementation

FutureOr<int> onProcessPlayBackAudioFrame(IAudioFrame audioFrame) async {
  throw UnimplementedError();
}