webrtc: Remove semicolons.
Bug: chromium:926235 Change-Id: I66c10ab3df38adf87152d1f18cc8162afedca7e4 Reviewed-on: https://webrtc-review.googlesource.com/c/123560 Commit-Queue: Tommi <tommi@webrtc.org> Reviewed-by: Tommi <tommi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26780}
This commit is contained in:
@ -306,7 +306,7 @@ class AecState {
|
||||
class SaturationDetector {
|
||||
public:
|
||||
// Returns whether the echo is to be considered saturated.
|
||||
bool SaturatedEcho() const { return saturated_echo_; };
|
||||
bool SaturatedEcho() const { return saturated_echo_; }
|
||||
|
||||
// Updates the detection decision based on new data.
|
||||
void Update(rtc::ArrayView<const float> x,
|
||||
@ -327,7 +327,7 @@ class AecState {
|
||||
explicit LegacySaturationDetector(const EchoCanceller3Config& config);
|
||||
|
||||
// Returns whether the echo is to be considered saturated.
|
||||
bool SaturatedEcho() const { return saturated_echo_; };
|
||||
bool SaturatedEcho() const { return saturated_echo_; }
|
||||
|
||||
// Resets the state of the detector.
|
||||
void Reset();
|
||||
|
||||
@ -54,4 +54,4 @@ float GetExtraSaturationMarginOffsetDb() {
|
||||
constexpr float kDefaultExtraSaturationMarginDb = 2.f;
|
||||
return kDefaultExtraSaturationMarginDb;
|
||||
}
|
||||
}; // namespace webrtc
|
||||
} // namespace webrtc
|
||||
|
||||
@ -22,7 +22,7 @@ class GainApplier {
|
||||
|
||||
void ApplyGain(AudioFrameView<float> signal);
|
||||
void SetGainFactor(float gain_factor);
|
||||
float GetGainFactor() const { return current_gain_factor_; };
|
||||
float GetGainFactor() const { return current_gain_factor_; }
|
||||
|
||||
private:
|
||||
void Initialize(size_t samples_per_channel);
|
||||
|
||||
@ -54,7 +54,7 @@ std::string FormFileName(const char* output_dir,
|
||||
ApmDataDumper::ApmDataDumper(int instance_index)
|
||||
: instance_index_(instance_index) {}
|
||||
#else
|
||||
ApmDataDumper::ApmDataDumper(int instance_index){};
|
||||
ApmDataDumper::ApmDataDumper(int instance_index) {}
|
||||
#endif
|
||||
|
||||
ApmDataDumper::~ApmDataDumper() = default;
|
||||
|
||||
Reference in New Issue
Block a user