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:gain_lin
(Results
1 - 3
of
3
) sorted by relevance
/third_party/ffmpeg/libavfilter/
H
A
D
af_headphone.c
368
float
gain_lin
= expf((s->gain - 3 * nb_input_channels) / 20 * M_LN10);
in convert_coeffs()
local
469
data_ir_l[j] = ptr[len * 2 - j * 2 - 2] *
gain_lin
;
in convert_coeffs()
470
data_ir_r[j] = ptr[len * 2 - j * 2 - 1] *
gain_lin
;
in convert_coeffs()
479
fft_in_l[j].re = ptr[j * 2 ] *
gain_lin
;
in convert_coeffs()
480
fft_in_r[j].re = ptr[j * 2 + 1] *
gain_lin
;
in convert_coeffs()
502
data_ir_l[j] = ptr[len * N - j * N - N + I ] *
gain_lin
;
in convert_coeffs()
503
data_ir_r[j] = ptr[len * N - j * N - N + I + 1] *
gain_lin
;
in convert_coeffs()
512
fft_in_l[j].re = ptr[j * N + I ] *
gain_lin
;
in convert_coeffs()
513
fft_in_r[j].re = ptr[j * N + I + 1] *
gain_lin
;
in convert_coeffs()
H
A
D
af_sofalizer.c
726
float
gain_lin
= expf((s->gain - 3 * nb_input_channels) / 20 * M_LN10); /* gain - 3dB/channel */
in load_data()
local
912
s->data_ir[0][offset + j] = lir[ir_samples - 1 - j] *
gain_lin
;
in load_data()
913
s->data_ir[1][offset + j] = rir[ir_samples - 1 - j] *
gain_lin
;
in load_data()
925
fft_in_l[s->delay[0][i] + j].re = lir[j] *
gain_lin
;
in load_data()
926
fft_in_r[s->delay[1][i] + j].re = rir[j] *
gain_lin
;
in load_data()
/third_party/ffmpeg/libavcodec/
H
A
D
libopusdec.c
123
double
gain_lin
= ff_exp10(gain_db / (20.0 * 256));
in libopus_decode_init()
local
125
opus->gain.d =
gain_lin
;
in libopus_decode_init()
127
opus->gain.i = FFMIN(
gain_lin
* 65536, INT_MAX);
in libopus_decode_init()
Completed in 4 milliseconds