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:last_dts
(Results
1 - 10
of
10
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
dirac_parser.c
216
if (s->last_pts == 0 && s->
last_dts
== 0)
in dirac_combine_frame()
218
else if (s->
last_dts
!= AV_NOPTS_VALUE)
in dirac_combine_frame()
219
s->dts = s->
last_dts
+ 1;
in dirac_combine_frame()
H
A
D
parser.c
158
s->
last_dts
= s->dts;
in av_parser_parse2()
H
A
D
avcodec.h
2813
int64_t
last_dts
;
member
/third_party/ffmpeg/libavformat/
H
A
D
fifo.c
171
static int64_t next_duration(AVFormatContext *avf, AVPacket *pkt, int64_t *
last_dts
)
in next_duration()
argument
175
int64_t duration = (*
last_dts
== AV_NOPTS_VALUE ? 0 : dts - *
last_dts
);
in next_duration()
176
*
last_dts
= dts;
in next_duration()
H
A
D
demux.h
31
int64_t
last_dts
;
member
H
A
D
demux.c
1478
int64_t
last_dts
= next_pkt->dts;
in av_read_frame()
local
1487
if (
last_dts
!= AV_NOPTS_VALUE) {
in av_read_frame()
1489
last_dts
= pktl->pkt.dts;
in av_read_frame()
1494
if (eof && next_pkt->pts == AV_NOPTS_VALUE &&
last_dts
!= AV_NOPTS_VALUE) {
in av_read_frame()
1500
next_pkt->pts =
last_dts
+ next_pkt->duration;
in av_read_frame()
2194
int64_t last = info->
last_dts
;
in ff_rfps_add_frame()
2246
info->
last_dts
= ts;
in ff_rfps_add_frame()
2309
sti->info->
last_dts
= AV_NOPTS_VALUE;
in ff_rfps_calculate()
H
A
D
options.c
278
sti->info->
last_dts
= AV_NOPTS_VALUE;
in avformat_new_stream()
H
A
D
avienc.c
89
int64_t
last_dts
;
member
871
avist->
last_dts
= pkt->dts + pkt->duration;
in avi_write_packet_internal()
920
write_skip_frames(s, i, avist->
last_dts
);
in avi_write_trailer()
H
A
D
mux.c
968
int64_t
last_dts
;
in ff_interleave_packet_per_dts()
local
973
last_dts
= av_rescale_q(last->pkt.dts,
in ff_interleave_packet_per_dts()
976
delta_dts = FFMAX(delta_dts,
last_dts
- top_dts);
in ff_interleave_packet_per_dts()
H
A
D
dashenc.c
118
int64_t
last_dts
, last_pts;
member
1713
os->
last_dts
= AV_NOPTS_VALUE;
in dash_init()
2090
if (!pkt->duration && os->
last_dts
!= AV_NOPTS_VALUE)
in dash_write_packet()
2091
pkt->duration = pkt->dts - os->
last_dts
;
in dash_write_packet()
2092
os->
last_dts
= pkt->dts;
in dash_write_packet()
Completed in 20 milliseconds