Home
last modified time | relevance | path

Searched refs:kFramesPerSecond (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_processing/agc2/
Dnoise_level_estimator.cc27 constexpr int kFramesPerSecond = 100; variable
57 min_noise_energy_ = sample_rate_hz * 2.f * 2.f / kFramesPerSecond; in Initialize()
64 static_cast<int>(frame.samples_per_channel() * kFramesPerSecond); in Analyze()
Dnoise_level_estimator_unittest.cc28 constexpr int kFramesPerSecond = 100; variable
35 rtc::CheckedDivExact(rate, kFramesPerSecond); in RunEstimator()
/external/openscreen/cast/streaming/
Dsender_unittest.cc622 constexpr int kFramesPerSecond = 1000; in TEST_F() local
631 OverrideRtpTimestamp(frame_count, &frame, kFramesPerSecond); in TEST_F()
640 OverrideRtpTimestamp(frame_count++, &one_frame_too_much, kFramesPerSecond); in TEST_F()
658 kFramesPerSecond); in TEST_F()
687 constexpr int kFramesPerSecond = 20; in TEST_F() local
697 OverrideRtpTimestamp(frame_count, &frame, kFramesPerSecond); in TEST_F()
718 OverrideRtpTimestamp(++frame_count, &one_frame_too_much, kFramesPerSecond); in TEST_F()
/external/webrtc/modules/audio_device/include/
Dtest_audio_device.cc43 constexpr int kFramesPerSecond = rtc::kNumMicrosecsPerSec / kFrameLengthUs; variable
442 return rtc::CheckedDivExact(sampling_frequency_in_hz, kFramesPerSecond); in SamplesPerFrame()