DeviceInfo

The audio device information.

public class DeviceInfo {
  public boolean isLowLatencyAudioSupported;

  @CalledByNative
  public DeviceInfo(boolean isLowLatencyAudioSupported) {
    this.isLowLatencyAudioSupported = isLowLatencyAudioSupported;
  }
}

Attributes

isLowLatencyAudioSupported
Whether the audio device supports ultra-low-latency capture and playback:
  • true: The device supports ultra-low-latency capture and playback.
  • false: The device does not support ultra-low-latency capture and playback.