enableAEC method

Future<int> enableAEC({
  1. required bool enable,
})

Enables or disables Acoustic Echo Cancellation (AEC).

AEC removes echo from the audio signal caused by speaker-to-microphone feedback. This is important for preventing the remote party from hearing their own voice echoed back.

Parameters:

  • enable: Whether to enable AEC (default: true)

Returns 0 on success, negative error code on failure.

Implementation

Future<int> enableAEC({required bool enable}) async {
  throw UnimplementedError('enableAEC has not been implemented.');
}