Searched refs:RMS (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Drms_level.h18 // Computes the root mean square (RMS) level in dBFs (decibels from digital
25 // RMS() to get the audio level indicator for the RTP header.
44 // Computes the RMS level over all data passed to Process() since the last
45 // call to RMS(). The returned value is positive but should be interpreted as
47 int RMS();
H A Dlevel_estimator_impl.cc49 int LevelEstimatorImpl::RMS() { function in class:webrtc::LevelEstimatorImpl
55 return rms_level->RMS();
H A Dlevel_estimator_impl.h38 virtual int RMS() OVERRIDE;
H A Drms_level.cc42 int RMSLevel::RMS() { function in class:webrtc::RMSLevel
/external/webrtc/src/modules/audio_processing/
H A Dlevel_estimator_impl.h38 virtual int RMS();
H A Dlevel_estimator_impl.cc52 int RMS() { function in class:webrtc::__anon33500::Level
124 int LevelEstimatorImpl::RMS() { function in class:webrtc::LevelEstimatorImpl
130 return level->RMS();
/external/chromium_org/content/browser/speech/endpointer/
H A Denergy_endpointer.cc17 // Returns the RMS (quadratic mean) of the input signal.
18 float RMS(const int16* samples, int num_samples) { function in namespace:__anon7428
237 float rms = RMS(samples, num_samples);
304 // threshold to be about 6dB above the average RMS.
310 // be about 10dB below the average RMS. If the noise level is high,
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc756 EXPECT_EQ(apm_->kNotEnabledError, apm_->level_estimator()->RMS());
769 EXPECT_EQ(127, apm_->level_estimator()->RMS());
775 EXPECT_EQ(127, apm_->level_estimator()->RMS());
777 // Try a few RMS values.
782 EXPECT_EQ(0, apm_->level_estimator()->RMS());
787 EXPECT_EQ(1, apm_->level_estimator()->RMS());
792 EXPECT_EQ(10, apm_->level_estimator()->RMS());
797 EXPECT_EQ(70, apm_->level_estimator()->RMS());
805 EXPECT_EQ(127, apm_->level_estimator()->RMS());
815 EXPECT_EQ(90, apm_->level_estimator()->RMS());
[all...]
H A Dprocess_test.cc893 printf("RMS: %d dBFS\n", -apm->level_estimator()->RMS());
/external/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1689 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber()); local
1690 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
1692 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1693 Uses.front().getRegSlot()) - RMS.begin();
1694 unsigned re = RMS.size();
1696 // Look for Uses[i] <= RMS <= Uses[i+1].
1697 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1698 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
1702 if (SlotIndex::isSameInstr(Uses[i+1], RMS[r
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/include/
H A Daudio_processing.h645 // Returns the root mean square (RMS) level in dBFs (decibels from digital
647 // frames since the last call to RMS(). The returned value is positive but
654 // to have been muted. The RMS of the frame will be interpreted as -127.
655 virtual int RMS() = 0;
H A Dmock_audio_processing.h125 MOCK_METHOD0(RMS,
/external/webrtc/src/modules/audio_processing/interface/
H A Daudio_processing.h504 // Returns the root mean square (RMS) level in dBFs (decibels from digital
506 // frames since the last call to RMS(). The returned value is positive but
514 // to have been muted. The RMS of the frame will be interpreted as -127.
515 virtual int RMS() = 0;
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/
H A Daudio_processing_unittest.cc1191 EXPECT_EQ(apm_->kNotEnabledError, apm_->level_estimator()->RMS());
1203 EXPECT_EQ(127, apm_->level_estimator()->RMS());
1209 EXPECT_EQ(127, apm_->level_estimator()->RMS());
1211 // Try a few RMS values.
1216 EXPECT_EQ(0, apm_->level_estimator()->RMS());
1221 EXPECT_EQ(1, apm_->level_estimator()->RMS());
1226 EXPECT_EQ(10, apm_->level_estimator()->RMS());
1231 EXPECT_EQ(70, apm_->level_estimator()->RMS());
1240 EXPECT_EQ(90, apm_->level_estimator()->RMS());
1248 EXPECT_EQ(90, apm_->level_estimator()->RMS());
[all...]
H A Dprocess_test.cc1067 printf("RMS: %d dBFS\n", -apm->level_estimator()->RMS());
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel.cc128 _rtpRtcpModule->SetAudioLevel(rms_level_.RMS());

Completed in 267 milliseconds