Added a protobuf field for the audio processing module to store the status of temporary experimental features that

are active in the module and its submodules.

BUG=webrtc:5778, webrtc:5777

Review URL: https://codereview.webrtc.org/1886233003

Cr-Commit-Position: refs/heads/master@{#12371}
This commit is contained in:
peah
2016-04-15 01:19:44 -07:00
committed by Commit bot
parent e02a3b2723
commit 7789fe7ab1
6 changed files with 65 additions and 1 deletions

View File

@ -46,7 +46,7 @@ message Stream {
// Contains the configurations of various APM component. A Config message is
// added when any of the fields are changed.
message Config {
// Next field number 17.
// Next field number 18.
// Acoustic echo canceler.
optional bool aec_enabled = 1;
optional bool aec_delay_agnostic_enabled = 2;
@ -69,6 +69,9 @@ message Config {
optional int32 ns_level = 15;
// Transient suppression.
optional bool transient_suppression_enabled = 16;
// Semicolon-separated string containing experimental feature
// descriptions.
optional string experiments_description = 17;
}
message Event {