HomeSort by relevance Sort by last modified time
    Searched defs:decay (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_laplace.c 45 int ec_laplace_get_start_freq(int decay)
48 int fs = (ft*(16384-decay))/(16384+decay);
59 int val[10000], decay[10000]; local
64 val[0] = 3; decay[0] = 6000;
65 val[1] = 0; decay[1] = 5800;
66 val[2] = -1; decay[2] = 5600;
70 decay[i] = rand()%11000+5000;
74 ec_laplace_get_start_freq(decay[i]), decay[i])
    [all...]
  /external/libvorbis/lib/
envelope.c 98 float decay; local
133 decay=filters->nearDC_acc=filters->nearDC_partialacc+temp;
136 decay=filters->nearDC_acc+=temp;
142 decay*=(1./(VE_NEARDC+1));
145 decay=todB(&decay)*.5-15.f;
154 if(val<decay)val=decay;
157 decay-=8.;
vorbisenc.c 72 float decay; member in struct:__anon22906
349 p->tone_decay=att[is].decay*(1.-ds)+att[is+1].decay*ds;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
asound_fm.h 54 unsigned char decay; /* 4 bits: decay rate */ member in struct:snd_dm_fm_voice
  /external/chromium_org/v8/benchmarks/spinning-balls/
v.js 85 Point.prototype.decay = function () {
343 // Decay the current point and remove it from the list
345 if (point.decay()) {
  /external/v8/benchmarks/spinning-balls/
v.js 85 Point.prototype.decay = function () {
343 // Decay the current point and remove it from the list
345 if (point.decay()) {
  /external/webrtc/src/modules/audio_processing/agc/
digital_agc.c 319 WebRtc_Word16 decay; local
365 // Determine decay factor depending on VAD
372 // decay = -2^17 / DecayTime; -> -65
373 decay = -65;
376 decay = 0;
379 // decay = (WebRtc_Word16)(((lower_thr - logratio)
383 decay = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmp32, 10);
386 // adjust decay factor for long silence (detected as low standard deviation)
392 decay = 0;
395 // decay = (WebRtc_Word16)(((stt->vadNearend.stdLongTerm - 4000) * decay) >> 12)
    [all...]
  /external/speex/libspeex/
mdf.c 488 spx_word16_t decay = SHR32(spx_exp(NEG16(DIV32_16(QCONST16(2.4,11),M))),1); local
493 st->prop[i] = MULT16_16_Q15(st->prop[i-1], decay);
    [all...]
  /external/chromium_org/third_party/opus/src/celt/
celt.c 2101 opus_val16 decay = st->loss_count==0 ? QCONST16(1.5f, DB_SHIFT) : QCONST16(.5f, DB_SHIFT); local
2175 opus_val16 decay; local
    [all...]

Completed in 708 milliseconds