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:ideal_dst_incr
(Results
1 - 6
of
6
) sorted by relevance
/third_party/pulseaudio/src/pulsecore/ffmpeg/
H
A
D
resample2.c
61
int
ideal_dst_incr
;
member
193
c->
ideal_dst_incr
= c->dst_incr= in_rate * phase_count;
in av_resample_init()
205
// sample_delta += (c->
ideal_dst_incr
- c->dst_incr)*(int64_t)c->compensation_distance / c->
ideal_dst_incr
;
in av_resample_compensate()
207
c->dst_incr = c->
ideal_dst_incr
- c->
ideal_dst_incr
* (int64_t)sample_delta / compensation_distance;
in av_resample_compensate()
271
dst_incr_frac= c->
ideal_dst_incr
% c->src_incr;
in av_resample()
272
dst_incr= c->
ideal_dst_incr
/ c->src_incr;
in av_resample()
293
av_log(NULL, AV_LOG_DEBUG, "%d %d %d\n", c->dst_incr, c->
ideal_dst_incr
, c->compensation_distance);
in av_resample()
/third_party/ffmpeg/libavresample/
H
A
D
resample.c
195
c->
ideal_dst_incr
= c->dst_incr;
in ff_audio_resample_init()
250
c->dst_incr = c->
ideal_dst_incr
- c->
ideal_dst_incr
*
in avresample_set_compensation()
253
c->dst_incr = c->
ideal_dst_incr
;
in avresample_set_compensation()
309
dst_incr_frac = c->
ideal_dst_incr
% c->src_incr;
in resample()
310
dst_incr = c->
ideal_dst_incr
/ c->src_incr;
in resample()
H
A
D
resample.h
33
int
ideal_dst_incr
;
member
/third_party/ffmpeg/libswresample/
H
A
D
resample.c
368
c->
ideal_dst_incr
= c->dst_incr;
in resample_init()
422
c->
ideal_dst_incr
= c->dst_incr;
in rebuild_filter_bank_with_compensation()
443
c->dst_incr = c->
ideal_dst_incr
- c->
ideal_dst_incr
* (int64_t)sample_delta / compensation_distance;
in set_compensation()
445
c->dst_incr = c->
ideal_dst_incr
;
in set_compensation()
503
c->dst_incr = c->
ideal_dst_incr
;
in multiple_resample()
536
num = FFMAX(num, (num * c->
ideal_dst_incr
- 1) / c->dst_incr + 1);
in get_out_samples()
H
A
D
resample.h
35
int
ideal_dst_incr
;
member
/third_party/ffmpeg/libswresample/x86/
H
A
D
resample.asm
36
.
ideal_dst_incr
: resd 1
Completed in 4 milliseconds