The current scheme for setting parameters and specifying the behavior
of the audio processing module is quite complex and hard to implement in a threadsafe and efficient manner. Therefore a new scheme for setting the parameters in the audio processing module is introduced in this CL. The idea is to roll this scheme out gradually and as a first functionality in the audio processing module where this is applied the level controller was chosen. This CL includes the replacement of the Config-based level controller scheme with the new scheme. BUG=webrtc:5298 Review-Url: https://codereview.webrtc.org/2292863002 Cr-Commit-Position: refs/heads/master@{#14171}
This commit is contained in:
@ -190,8 +190,8 @@ class MockAudioProcessing : public AudioProcessing {
|
||||
ChannelLayout reverse_layout));
|
||||
MOCK_METHOD1(Initialize,
|
||||
int(const ProcessingConfig& processing_config));
|
||||
MOCK_METHOD1(SetExtraOptions,
|
||||
void(const Config& config));
|
||||
MOCK_METHOD1(ApplyConfig, void(const Config& config));
|
||||
MOCK_METHOD1(SetExtraOptions, void(const webrtc::Config& config));
|
||||
MOCK_METHOD1(set_sample_rate_hz,
|
||||
int(int rate));
|
||||
MOCK_CONST_METHOD0(input_sample_rate_hz,
|
||||
|
||||
Reference in New Issue
Block a user