| Index: webrtc/modules/audio_processing/echo_cancellation_impl.h
|
| diff --git a/webrtc/modules/audio_processing/echo_cancellation_impl.h b/webrtc/modules/audio_processing/echo_cancellation_impl.h
|
| index a40a267e32fb5222d51feb08b229695b642ebd28..82ae8596d68e8d54b111ebb470f5c94f2dd60975 100644
|
| --- a/webrtc/modules/audio_processing/echo_cancellation_impl.h
|
| +++ b/webrtc/modules/audio_processing/echo_cancellation_impl.h
|
| @@ -43,6 +43,7 @@ class EchoCancellationImpl : public EchoCancellation,
|
| void SetExtraOptions(const Config& config) override;
|
| bool is_delay_agnostic_enabled() const;
|
| bool is_extended_filter_enabled() const;
|
| + bool is_next_generation_aec_enabled() const;
|
|
|
| // Reads render side data that has been queued on the render call.
|
| // Called holding the capture lock.
|
| @@ -92,6 +93,7 @@ class EchoCancellationImpl : public EchoCancellation,
|
| bool delay_logging_enabled_ GUARDED_BY(crit_capture_);
|
| bool extended_filter_enabled_ GUARDED_BY(crit_capture_);
|
| bool delay_agnostic_enabled_ GUARDED_BY(crit_capture_);
|
| + bool next_generation_aec_enabled_ GUARDED_BY(crit_capture_);
|
|
|
| size_t render_queue_element_max_size_ GUARDED_BY(crit_render_)
|
| GUARDED_BY(crit_capture_);
|
|
|