Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:estimated_rate
(Results
1 - 1
of
1
) sorted by relevance
/third_party/pulseaudio/src/modules/rtp/
H
A
D
module-rtp-recv.c
109
double
estimated_rate
;
member
278
double
estimated_rate
, alpha = 0.02;
in rtpoll_work_cb()
local
332
estimated_rate
= (double) current_rate * (double) RATE_UPDATE_INTERVAL / (double) (RATE_UPDATE_INTERVAL + s->last_latency - latency);
in rtpoll_work_cb()
333
if (fabs(s->
estimated_rate
- s->avg_estimated_rate) > 1) {
in rtpoll_work_cb()
334
double ratio = (
estimated_rate
+ s->
estimated_rate
- 2*s->avg_estimated_rate) / (s->
estimated_rate
- s->avg_estimated_rate);
in rtpoll_work_cb()
337
s->avg_estimated_rate = alpha *
estimated_rate
+ (1-alpha) * s->avg_estimated_rate;
in rtpoll_work_cb()
338
s->
estimated_rate
=
estimated_rate
;
in rtpoll_work_cb()
[all...]
Completed in 1 milliseconds