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:dts_shift
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ffmpeg/libavformat/
H
A
D
movenc.h
132
int64_t
dts_shift
;
member
H
A
D
isom.h
212
int
dts_shift
; ///< dts shift when ctts is negative
member
H
A
D
mov.c
3269
av_log(logctx, AV_LOG_WARNING, "mov_update_dts_shift():
dts_shift
set to %d\n", INT_MAX);
3272
sc->
dts_shift
= FFMAX(sc->
dts_shift
, -duration);
3350
av_log(c->fc, AV_LOG_TRACE, "dts shift %d\n", sc->
dts_shift
);
3538
// If
dts_shift
> 0, then all the index timestamps will have to be offset by
3539
// at least
dts_shift
amount to obtain PTS.
3540
// Hence we decrement the searched timestamp_pts by
dts_shift
to find the closest index element.
3541
if (msc->
dts_shift
> 0) {
3542
timestamp_pts -= msc->
dts_shift
;
3580
// No need to add
dts_shift
t
[all...]
H
A
D
movenc.c
6185
if (track->
dts_shift
!= AV_NOPTS_VALUE)
6186
dts += track->
dts_shift
;
6392
if (trk->
dts_shift
!= AV_NOPTS_VALUE) {
6395
ref -= trk->
dts_shift
;
6785
if (trk->
dts_shift
== AV_NOPTS_VALUE)
6786
trk->
dts_shift
= pkt->pts - pkt->dts;
6787
pkt->dts += trk->
dts_shift
;
7588
track->
dts_shift
= AV_NOPTS_VALUE;
Completed in 19 milliseconds