HomeSort by relevance Sort by last modified time
    Searched refs:Agc (Results 1 - 8 of 8) sorted by null

  /external/webrtc/webrtc/modules/audio_processing/agc/
agc.h 23 class Agc {
25 Agc();
26 virtual ~Agc();
agc.cc 11 #include "webrtc/modules/audio_processing/agc/agc.h"
20 #include "webrtc/modules/audio_processing/agc/histogram.h"
21 #include "webrtc/modules/audio_processing/agc/utility.h"
33 Agc::Agc()
40 Agc::~Agc() {}
42 float Agc::AnalyzePreproc(const int16_t* audio, size_t length) {
52 int Agc::Process(const int16_t* audio, size_t length, int sample_rate_hz)
    [all...]
mock_agc.h 14 #include "webrtc/modules/audio_processing/agc/agc.h"
21 class MockAgc : public Agc {
agc_manager_direct.h 15 #include "webrtc/modules/audio_processing/agc/agc.h"
34 // Direct interface to use AGC to set volume and compression values.
36 // AGC.
48 // Dependency injection for testing. Don't delete |agc| as the memory is owned
50 AgcManagerDirect(Agc* agc,
75 // Set the maximum level the AGC is allowed to apply. Also updates the
84 rtc::scoped_ptr<Agc> agc_;
agc_manager_direct.cc 11 #include "webrtc/modules/audio_processing/agc/agc_manager_direct.h"
20 #include "webrtc/modules/audio_processing/agc/gain_map_internal.h"
117 : agc_(new Agc()),
135 AgcManagerDirect::AgcManagerDirect(Agc* agc,
139 : agc_(agc),
204 // Check for clipped samples, as the AGC has difficulty detecting pitch
215 LOG(LS_INFO) << "[agc] Clipping detected. clipped_ratio="
225 // Reset the AGC since the level has changed.
247 LOG(LS_ERROR) << "Agc::Process failed"
    [all...]
agc_unittest.cc 11 #include "webrtc/modules/audio_processing/agc/agc.h"
18 #include "webrtc/tools/agc/test_utils.h"
86 Agc agc_;
  /external/webrtc/webrtc/tools/agc/
fake_agc.h 14 #include "webrtc/modules/audio_processing/agc/agc.h"
18 class FakeAgc : public Agc {
  /external/webrtc/webrtc/modules/audio_processing/transient/
transient_suppression_test.cc 21 #include "webrtc/modules/audio_processing/agc/agc.h"
173 Agc agc; local
207 agc.Process(audio_buffer_i.get(),
210 << "The AGC could not process the frame";
224 agc.voice_probability(),

Completed in 222 milliseconds