/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
xcorr_coef.c | 23 * crossCorr*crossCorr/(energy) criteria 40 int32_t crossCorr, Energy; 67 /* Introduce a scale factor on the Energy in int32_t in 77 /* Calculate the first energy, then do a +/- to get the other energies */ 78 Energy=WebRtcSpl_DotProductWithScale(regressor, regressor, subl, shifts); 86 if ((Energy>0)&&(crossCorr>0)) { 88 /* Put cross correlation and energy on 16 bit word */ 91 Energyscale=(int16_t)WebRtcSpl_NormW32(Energy)-16; 92 EnergyMod=(int16_t)WEBRTC_SPL_SHIFT_W32(Energy, Energyscale); 98 been performed on (crossCorr*crossCorr)/energy [all...] |
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
rtp_receiver_strategy.cc | 44 int RTPReceiverStrategy::Energy(uint8_t array_of_energy[kRtpCsrcSize]) const {
|
rtp_receiver_impl.h | 63 int32_t Energy(uint8_t array_of_energy[kRtpCsrcSize]) const override;
|
rtp_receiver_strategy.h | 83 virtual int Energy(uint8_t array_of_energy[kRtpCsrcSize]) const;
|
rtp_receiver_audio.h | 94 int Energy(uint8_t array_of_energy[kRtpCsrcSize]) const override;
|
rtp_receiver_impl.cc | 155 int32_t RtpReceiverImpl::Energy( 157 return rtp_media_receiver_->Energy(array_of_energy);
|
rtp_receiver_audio.cc | 250 int RTPReceiverAudio::Energy(uint8_t array_of_energy[kRtpCsrcSize]) const {
|
/external/webrtc/webrtc/modules/rtp_rtcp/include/ |
rtp_receiver.h | 98 // Returns the current energy of the RTP stream received. 99 virtual int32_t Energy(uint8_t array_of_energy[kRtpCsrcSize]) const = 0;
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
background_noise.h | 45 int32_t Energy(size_t channel) const; 91 energy = 2500; 103 int32_t energy; member in struct:webrtc::BackgroundNoise::ChannelParameters 118 // Increments the energy threshold by a factor 1 + |kThresholdIncrement|.
|
normal.cc | 84 int32_t energy = WebRtcSpl_DotProductWithScale(signal, signal, local 89 energy = energy / scaled_energy_length; 91 energy = 0; 95 if ((energy != 0) && 96 (energy > background_noise_.Energy(channel_ix))) { 97 // Normalize new frame energy to 15 bits. 98 scaling = WebRtcSpl_NormW32(energy) - 16; 99 // We want background_noise_.energy() / energy in Q14 [all...] |
time_stretch.cc | 127 // Calculate square-root of energy product. 192 right_side = background_noise_.Energy(master_channel_); 204 // (|scaling| is the scale factor before energy calculation, thus the scale 205 // factor for the energy is 2 * scaling.)
|
background_noise.cc | 74 // update energy threshold levels, since we have in fact observed 75 // a low energy signal. 77 // Never go under 1.0 in average sample energy. 94 // Generate the CNG gain factor by looking at the energy of the residual. 107 // enough. Also ensure that the energy is non-zero. 128 int32_t BackgroundNoise::Energy(size_t channel) const { 130 return channel_parameters_[channel].energy; 182 // Number of shifts to normalize energy to energy/sample. 211 // Update maximum energy [all...] |
/external/opencv/cvaux/src/ |
cvvecfacetracking.cpp | 92 int Energy(const CvTrackingRect& prev) 226 void Energy(); 239 Energy(); 245 Energy(); 252 Energy(); 259 Energy(); 393 void CvFaceElement::Energy() 420 // energy 421 pRect->Energy(m_trPrev); 424 }//void CvFaceElement::Energy() 792 int energy = 0; local 837 int energy = ppNew[element[0]]->iEnergy + ppNew[element[1]]->iEnergy + local [all...] |
/external/webrtc/webrtc/modules/audio_processing/ns/ |
ns_core.c | 954 float energy = 0.f; local 1048 float energy; local [all...] |