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:pts_buffer
(Results
1 - 6
of
6
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
libxavs.c
66
int64_t *
pts_buffer
;
member
144
x4->
pts_buffer
[avctx->frame_number % (avctx->max_b_frames+1)] = frame->pts;
in XAVS_frame()
165
pkt->dts = 2*x4->
pts_buffer
[(x4->out_frame_count-1)%(avctx->max_b_frames+1)] -
in XAVS_frame()
166
x4->
pts_buffer
[(x4->out_frame_count-2)%(avctx->max_b_frames+1)];
in XAVS_frame()
176
pkt->dts = pkt->pts - (x4->
pts_buffer
[1] - x4->
pts_buffer
[0]);
in XAVS_frame()
178
pkt->dts = x4->
pts_buffer
[(x4->out_frame_count-1)%(avctx->max_b_frames+1)];
in XAVS_frame()
216
av_freep(&x4->
pts_buffer
);
in XAVS_close()
350
if (!FF_ALLOCZ_TYPED_ARRAY(x4->
pts_buffer
, avctx->max_b_frames + 1))
in XAVS_init()
/third_party/ffmpeg/libavformat/
H
A
D
demux.c
744
static int64_t select_from_pts_buffer(AVStream *st, int64_t *
pts_buffer
, int64_t dts)
in select_from_pts_buffer()
argument
765
dts =
pts_buffer
[i];
in select_from_pts_buffer()
771
if (
pts_buffer
[i] != AV_NOPTS_VALUE) {
in select_from_pts_buffer()
772
int64_t diff = FFABS(
pts_buffer
[i] - dts)
in select_from_pts_buffer()
787
dts =
pts_buffer
[0];
in select_from_pts_buffer()
802
int64_t
pts_buffer
[MAX_REORDER_DELAY+1];
in update_dts_from_pts()
local
805
pts_buffer
[i] = AV_NOPTS_VALUE;
in update_dts_from_pts()
812
pts_buffer
[0] = pkt_buffer->pkt.pts;
in update_dts_from_pts()
813
for (int i = 0; i < delay &&
pts_buffer
[i] >
pts_buffer
[
in update_dts_from_pts()
[all...]
H
A
D
mux.c
535
sti->
pts_buffer
[0] = pkt->pts;
in compute_muxer_pkt_fields()
536
for (int i = 1; i < delay + 1 && sti->
pts_buffer
[i] == AV_NOPTS_VALUE; i++)
in compute_muxer_pkt_fields()
537
sti->
pts_buffer
[i] = pkt->pts + (i - delay - 1) * pkt->duration;
in compute_muxer_pkt_fields()
538
for (int i = 0; i<delay && sti->
pts_buffer
[i] > sti->
pts_buffer
[i + 1]; i++)
in compute_muxer_pkt_fields()
539
FFSWAP(int64_t, sti->
pts_buffer
[i], sti->
pts_buffer
[i + 1]);
in compute_muxer_pkt_fields()
541
pkt->dts = sti->
pts_buffer
[0];
in compute_muxer_pkt_fields()
H
A
D
internal.h
343
int64_t
pts_buffer
[MAX_REORDER_DELAY+1];
member
H
A
D
options.c
314
sti->
pts_buffer
[i] = AV_NOPTS_VALUE;
in avformat_new_stream()
H
A
D
seek.c
741
sti->
pts_buffer
[j] = AV_NOPTS_VALUE;
in ff_read_frame_flush()
Completed in 8 milliseconds