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:prev_poc_lsb
(Results
1 - 8
of
8
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
h264_parse.c
292
if (pc->
prev_poc_lsb
< 0)
in ff_h264_init_poc()
293
pc->
prev_poc_lsb
= pc->poc_lsb;
in ff_h264_init_poc()
295
if (pc->poc_lsb < pc->
prev_poc_lsb
&&
in ff_h264_init_poc()
296
pc->
prev_poc_lsb
- pc->poc_lsb >= max_poc_lsb / 2)
in ff_h264_init_poc()
298
else if (pc->poc_lsb > pc->
prev_poc_lsb
&&
in ff_h264_init_poc()
299
pc->
prev_poc_lsb
- pc->poc_lsb < -max_poc_lsb / 2)
in ff_h264_init_poc()
H
A
D
h264_parse.h
89
int
prev_poc_lsb
; ///< poc_lsb of the last reference pic for POC type 0
member
H
A
D
h264_parser.c
354
p->poc.
prev_poc_lsb
= 0;
in parse_nal_units()
477
p->poc.
prev_poc_lsb
= p->poc.poc_lsb;
in parse_nal_units()
480
p->poc.
prev_poc_lsb
=
in parse_nal_units()
H
A
D
hevc_ps.c
1763
int
prev_poc_lsb
= pocTid0 % max_poc_lsb;
in ff_hevc_compute_poc()
local
1764
int prev_poc_msb = pocTid0 -
prev_poc_lsb
;
in ff_hevc_compute_poc()
1767
if (poc_lsb <
prev_poc_lsb
&&
prev_poc_lsb
- poc_lsb >= max_poc_lsb / 2)
in ff_hevc_compute_poc()
1769
else if (poc_lsb >
prev_poc_lsb
&& poc_lsb -
prev_poc_lsb
> max_poc_lsb / 2)
in ff_hevc_compute_poc()
H
A
D
h264_picture.c
230
h->poc.
prev_poc_lsb
= h->poc.poc_lsb;
in ff_h264_field_end()
H
A
D
h264dec.c
439
h->poc.
prev_poc_lsb
= -1;
in idr()
H
A
D
h264_slice.c
466
h->poc.
prev_poc_lsb
= h->poc.poc_lsb;
in ff_h264_update_thread_context()
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/
H
A
D
vid_dec_h265.c
767
unsigned max_poc_lsb,
prev_poc_lsb
, prev_poc_msb;
in slice_header()
local
855
prev_poc_lsb
= slice_prev_poc & (max_poc_lsb - 1);
in slice_header()
856
prev_poc_msb = slice_prev_poc -
prev_poc_lsb
;
in slice_header()
858
if ((poc_lsb <
prev_poc_lsb
) &&
in slice_header()
859
((
prev_poc_lsb
- poc_lsb ) >= (max_poc_lsb / 2)))
in slice_header()
862
else if ((poc_lsb >
prev_poc_lsb
) &&
in slice_header()
863
((poc_lsb -
prev_poc_lsb
) > (max_poc_lsb / 2)))
in slice_header()
Completed in 13 milliseconds