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:video_dec_ctx
(Results
1 - 2
of
2
) sorted by relevance
/third_party/ffmpeg/doc/examples/
H
A
D
demuxing_decoding.c
39
static AVCodecContext *
video_dec_ctx
= NULL, *audio_dec_ctx;
variable
257
if (open_codec_context(&video_stream_idx, &
video_dec_ctx
, fmt_ctx, AVMEDIA_TYPE_VIDEO) >= 0) {
in main()
268
width =
video_dec_ctx
->width;
in main()
269
height =
video_dec_ctx
->height;
in main()
270
pix_fmt =
video_dec_ctx
->pix_fmt;
in main()
323
ret = decode_packet(
video_dec_ctx
, pkt);
in main()
332
if (
video_dec_ctx
)
in main()
333
decode_packet(
video_dec_ctx
, NULL);
in main()
370
avcodec_free_context(&
video_dec_ctx
);
in main()
H
A
D
extract_mvs.c
29
static AVCodecContext *
video_dec_ctx
= NULL;
variable
39
int ret = avcodec_send_packet(
video_dec_ctx
, pkt);
in decode_packet()
46
ret = avcodec_receive_frame(
video_dec_ctx
, frame);
in decode_packet()
118
video_dec_ctx
= dec_ctx;
in open_codec_context()
184
avcodec_free_context(&
video_dec_ctx
);
in main()
Completed in 2 milliseconds