Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(891)

Unified Diff: webrtc/modules/audio_processing/gain_control_impl.h

Issue 1913603002: Compensate for the compression gain in the IntelligibilityEnhancer (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/gain_control_impl.h
diff --git a/webrtc/modules/audio_processing/gain_control_impl.h b/webrtc/modules/audio_processing/gain_control_impl.h
index 9498ac60b54237c8784b51e77a8606a65dcf683c..2459ce3b4b7e943412d2d6c7608a1be24edef48c 100644
--- a/webrtc/modules/audio_processing/gain_control_impl.h
+++ b/webrtc/modules/audio_processing/gain_control_impl.h
@@ -51,6 +51,8 @@ class GainControlImpl : public GainControl {
// Reads render side data that has been queued on the render call.
void ReadQueuedRenderData();
+ int compression_gain_db() const override;
hlundin-webrtc 2016/04/25 08:00:35 Nit: you should reorder the methods in the .cc fil
aluebs-webrtc 2016/04/27 22:52:58 That doesn't hold for this file at all (they are i
hlundin-webrtc 2016/04/28 06:19:01 Acknowledged.
+
private:
class GainController;
@@ -61,7 +63,6 @@ class GainControlImpl : public GainControl {
int set_target_level_dbfs(int level) override;
int target_level_dbfs() const override;
int set_compression_gain_db(int gain) override;
- int compression_gain_db() const override;
int enable_limiter(bool enable) override;
int set_analog_level_limits(int minimum, int maximum) override;
int analog_level_minimum() const override;

Powered by Google App Engine
This is Rietveld 408576698