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:rc_min_rate
(Results
1 - 8
of
8
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
libvorbisenc.c
119
int minrate = avctx->
rc_min_rate
> 0 ? avctx->
rc_min_rate
: -1;
in libvorbis_setup()
H
A
D
libaomenc.c
710
if (avctx->
rc_min_rate
== avctx->rc_max_rate &&
in aom_init()
711
avctx->
rc_min_rate
== avctx->bit_rate && avctx->bit_rate) {
in aom_init()
755
avctx->
rc_min_rate
* 100LL / avctx->bit_rate;
in aom_init()
1019
cpb_props->min_bitrate = avctx->
rc_min_rate
;
in aom_init()
H
A
D
libvpxenc.c
950
if (avctx->
rc_min_rate
== avctx->rc_max_rate &&
in vpx_init()
951
avctx->
rc_min_rate
== avctx->bit_rate && avctx->bit_rate) {
in vpx_init()
1001
avctx->
rc_min_rate
* 100LL / avctx->bit_rate;
in vpx_init()
1196
cpb_props->min_bitrate = avctx->
rc_min_rate
;
in vpx_init()
H
A
D
avcodec.h
1221
int64_t
rc_min_rate
;
member
H
A
D
mpegvideo_enc.c
440
if (avctx->
rc_min_rate
&& avctx->rc_max_rate != avctx->
rc_min_rate
) {
in ff_mpv_encode_init()
445
if (avctx->
rc_min_rate
&& avctx->
rc_min_rate
> avctx->bit_rate) {
in ff_mpv_encode_init()
457
avctx->rc_max_rate != avctx->
rc_min_rate
) {
in ff_mpv_encode_init()
482
avctx->
rc_min_rate
== avctx->rc_max_rate &&
in ff_mpv_encode_init()
920
cpb_props->min_bitrate = avctx->
rc_min_rate
;
in ff_mpv_encode_init()
1826
avctx->
rc_min_rate
== avctx->rc_max_rate &&
in ff_mpv_encode_picture()
H
A
D
ratecontrol.c
152
const double min_rate = s->avctx->
rc_min_rate
/ fps;
in modify_qscale()
685
const double min_rate = s->avctx->
rc_min_rate
/ fps;
in ff_vbv_update()
H
A
D
options_table.h
148
OFFSET(
rc_min_rate
), AV_OPT_TYPE_INT64, {.i64 = DEFAULT }, INT_MIN, INT_MAX, V|A|E},
H
A
D
qsvenc.c
1166
cpb_props->min_bitrate = avctx->
rc_min_rate
;
in qsv_retrieve_enc_params()
Completed in 23 milliseconds