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:RadioGain
(Results
1 - 5
of
5
) sorted by relevance
/third_party/lame/libmp3lame/
H
A
D
VbrTag.c
681
int
RadioGain
= gfc->ov_rpg.
RadioGain
;
in PutLameVBR()
local
682
if (
RadioGain
> 0x1FE)
in PutLameVBR()
683
RadioGain
= 0x1FE;
in PutLameVBR()
684
if (
RadioGain
< -0x1FE)
in PutLameVBR()
685
RadioGain
= -0x1FE;
in PutLameVBR()
690
if (
RadioGain
>= 0)
in PutLameVBR()
691
nRadioReplayGain |=
RadioGain
; /* set gain adjustment */
in PutLameVBR()
694
nRadioReplayGain |= -
RadioGain
; /* set gain adjustment */
in PutLameVBR()
H
A
D
lame.c
1605
FLOAT const
RadioGain
= (FLOAT) GetTitleGain(rsv->rgdata);
in save_gain_values()
local
1606
if (NEQ(
RadioGain
, GAIN_NOT_ENOUGH_SAMPLES)) {
in save_gain_values()
1607
rov->
RadioGain
= (int) floor(
RadioGain
* 10.0 + 0.5); /* round to nearest */
in save_gain_values()
1610
rov->
RadioGain
= 0;
in save_gain_values()
2380
gfc->ov_rpg.
RadioGain
= 0;
in lame_init_internal_flags()
H
A
D
util.h
354
int
RadioGain
;
member
H
A
D
set_get.c
2068
return gfc->ov_rpg.
RadioGain
;
in lame_get_RadioGain()
/third_party/lame/frontend/
H
A
D
lame_main.c
277
int
RadioGain
= lame_get_RadioGain(gf);
in print_trailing_info()
local
278
console_printf("ReplayGain: %s%.1fdB\n",
RadioGain
> 0 ? "+" : "",
in print_trailing_info()
279
((float)
RadioGain
) / 10.0);
in print_trailing_info()
280
if (
RadioGain
> 0x1FE ||
RadioGain
< -0x1FE)
in print_trailing_info()
Completed in 10 milliseconds