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:mv_mode
(Results
1 - 9
of
9
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
vaapi_vc1.c
32
static int get_VAMvModeVC1(enum MVModes
mv_mode
)
in get_VAMvModeVC1()
argument
34
switch (
mv_mode
) {
in get_VAMvModeVC1()
51
(v->
mv_mode
== MV_PMODE_MIXED_MV ||
in vc1_has_MVTYPEMB_bitplane()
52
(v->
mv_mode
== MV_PMODE_INTENSITY_COMP &&
in vc1_has_MVTYPEMB_bitplane()
146
return get_VAMvModeVC1(v->
mv_mode
);
in vc1_get_MVMODE()
155
v->
mv_mode
== MV_PMODE_INTENSITY_COMP)
in vc1_get_MVMODE2()
164
v->
mv_mode
== MV_PMODE_INTENSITY_COMP)
in vc1_get_INTCOMPFIELD()
176
if ((v->fcm == PROGRESSIVE && v->
mv_mode
== MV_PMODE_INTENSITY_COMP) ||
in vc1_get_LUMSCALE()
179
else if (v->fcm == ILACE_FIELD && v->
mv_mode
== MV_PMODE_INTENSITY_COMP)
in vc1_get_LUMSCALE()
192
if ((v->fcm == PROGRESSIVE && v->
mv_mode
in vc1_get_LUMSHIFT()
[all...]
H
A
D
vc1.c
730
v->
mv_mode
= ff_vc1_mv_pmode_table[lowquant][get_unary(gb, 1, 4)];
in ff_vc1_parse_frame_header()
731
if (v->
mv_mode
== MV_PMODE_INTENSITY_COMP) {
in ff_vc1_parse_frame_header()
741
if (v->
mv_mode
== MV_PMODE_INTENSITY_COMP) {
in ff_vc1_parse_frame_header()
746
v->s.quarter_sample = (v->
mv_mode
!= MV_PMODE_1MV_HPEL &&
in ff_vc1_parse_frame_header()
747
v->
mv_mode
!= MV_PMODE_1MV_HPEL_BILIN);
in ff_vc1_parse_frame_header()
748
v->s.mspel = (v->
mv_mode
!= MV_PMODE_1MV_HPEL_BILIN);
in ff_vc1_parse_frame_header()
751
if ((v->
mv_mode
== MV_PMODE_INTENSITY_COMP &&
in ff_vc1_parse_frame_header()
753
v->
mv_mode
== MV_PMODE_MIXED_MV) {
in ff_vc1_parse_frame_header()
796
v->
mv_mode
= get_bits1(gb) ? MV_PMODE_1MV : MV_PMODE_1MV_HPEL_BILIN;
in ff_vc1_parse_frame_header()
798
v->s.quarter_sample = (v->
mv_mode
in ff_vc1_parse_frame_header()
[all...]
H
A
D
dxva2_vc1.c
52
if ((v->fcm == ILACE_FRAME && v->intcomp) || (v->fcm != ILACE_FRAME && v->
mv_mode
== MV_PMODE_INTENSITY_COMP)) {
in fill_picture_parameters()
95
pp->bMVprecisionAndChromaRelation = ((v->
mv_mode
== MV_PMODE_1MV_HPEL_BILIN) << 3) |
in fill_picture_parameters()
132
pp->bPic4MVallowed = v->
mv_mode
== MV_PMODE_MIXED_MV ||
in fill_picture_parameters()
133
(v->
mv_mode
== MV_PMODE_INTENSITY_COMP &&
in fill_picture_parameters()
H
A
D
vp9dec.h
53
uint8_t
mv_mode
[7][3];
member
181
unsigned
mv_mode
[7][4];
member
H
A
D
vp9block.c
591
s->prob.p.
mv_mode
[c]);
in decode_mode()
595
td->counts.
mv_mode
[c][b->mode[0] - 10]++;
in decode_mode()
627
s->prob.p.
mv_mode
[c]);
in decode_mode()
628
td->counts.
mv_mode
[c][b->mode[0] - 10]++;
in decode_mode()
633
s->prob.p.
mv_mode
[c]);
in decode_mode()
634
td->counts.
mv_mode
[c][b->mode[1] - 10]++;
in decode_mode()
644
s->prob.p.
mv_mode
[c]);
in decode_mode()
645
td->counts.
mv_mode
[c][b->mode[2] - 10]++;
in decode_mode()
650
s->prob.p.
mv_mode
[c]);
in decode_mode()
651
td->counts.
mv_mode
[
in decode_mode()
[all...]
H
A
D
vp9prob.c
151
uint8_t *pp = p->
mv_mode
[i];
in ff_vp9_adapt_probs()
152
unsigned *c = s->td[0].counts.
mv_mode
[i];
in ff_vp9_adapt_probs()
H
A
D
vc1.h
231
uint8_t
mv_mode
; ///< MV coding mode
member
H
A
D
vc1_pred.c
229
if (v->
mv_mode
== MV_PMODE_MIXED_MV ||
in ff_vc1_pred_mv()
230
((v->
mv_mode
== MV_PMODE_INTENSITY_COMP) && (v->mv_mode2 == MV_PMODE_MIXED_MV)))
in ff_vc1_pred_mv()
H
A
D
vp9.c
974
s->prob.p.
mv_mode
[i][j] =
in decode_frame_header()
975
update_prob(&s->c, s->prob.p.
mv_mode
[i][j]);
in decode_frame_header()
Completed in 20 milliseconds