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_pts
(Results
1 - 5
of
5
) sorted by relevance
/third_party/ffmpeg/libavfilter/
H
A
D
vf_vfrdet.c
28
int64_t
prev_pts
;
member
43
if (s->
prev_pts
!= AV_NOPTS_VALUE) {
in filter_frame()
44
int64_t delta = in->pts - s->
prev_pts
;
in filter_frame()
63
s->
prev_pts
= in->pts;
in filter_frame()
72
s->
prev_pts
= AV_NOPTS_VALUE;
in init()
H
A
D
f_drawgraph.c
54
int64_t
prev_pts
;
member
331
if (out_pts == s->
prev_pts
)
in filter_frame()
338
clone->pts = s->
prev_pts
= out_pts;
in filter_frame()
433
s->
prev_pts
= AV_NOPTS_VALUE;
in config_output()
H
A
D
vf_deinterlace_vaapi.c
51
int
prev_pts
;
member
301
output_frame->pts = 3 * input_frame->pts - ctx->
prev_pts
;
in deint_vaapi_filter_frame()
317
ctx->
prev_pts
= input_frame->pts;
in deint_vaapi_filter_frame()
/third_party/ffmpeg/libavformat/
H
A
D
webm_chunk.c
46
int64_t
prev_pts
;
member
69
wc->
prev_pts
= AV_NOPTS_VALUE;
in webm_chunk_init()
221
if (wc->
prev_pts
!= AV_NOPTS_VALUE)
in webm_chunk_write_packet()
222
wc->duration_written += av_rescale_q(pkt->pts - wc->
prev_pts
,
in webm_chunk_write_packet()
225
wc->
prev_pts
= pkt->pts;
in webm_chunk_write_packet()
/third_party/ffmpeg/libavcodec/
H
A
D
cuviddec.c
89
int64_t
prev_pts
;
member
613
if (ctx->
prev_pts
== INT64_MIN) {
in cuvid_output_frame()
614
ctx->
prev_pts
= frame->pts;
in cuvid_output_frame()
617
int pts_diff = (frame->pts - ctx->
prev_pts
) / 2;
in cuvid_output_frame()
618
ctx->
prev_pts
= frame->pts;
in cuvid_output_frame()
1022
ctx->
prev_pts
= INT64_MIN;
in cuvid_decode_init()
1076
ctx->
prev_pts
= INT64_MIN;
in cuvid_flush()
Completed in 5 milliseconds