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:is_444
(Results
1 - 3
of
3
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
dnxhddec.c
71
int
is_444
;
member
246
ctx->
is_444
= (buf[0x2C] >> 6) & 1;
in dnxhd_decode_header()
247
if (ctx->
is_444
) {
in dnxhd_decode_header()
305
ctx->width, ctx->height, ctx->
is_444
? "4:4" : "2:2",
in dnxhd_decode_header()
372
if (!ctx->
is_444
) {
in dnxhd_decode_dct_block()
528
for (i = 0; i < 8 + 4 * ctx->
is_444
; i++) {
in dnxhd_decode_macroblock()
539
dest_u = frame->data[1] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->
is_444
));
in dnxhd_decode_macroblock()
540
dest_v = frame->data[2] + ((y * dct_linesize_chroma) << 4) + (x << (3 + shift1 + ctx->
is_444
));
in dnxhd_decode_macroblock()
554
if (!ctx->
is_444
) {
in dnxhd_decode_macroblock()
H
A
D
dnxhdenc.c
393
ctx->
is_444
= ctx->profile == FF_PROFILE_DNXHR_444;
in dnxhd_encode_init()
435
if (ctx->
is_444
|| ctx->profile == FF_PROFILE_DNXHR_HQX) {
in dnxhd_encode_init()
550
buf[0x2c] = (!ctx->interlaced << 7) | (ctx->
is_444
<< 6) | (avctx->pix_fmt == AV_PIX_FMT_YUV444P10);
in dnxhd_write_header()
611
if (ctx->
is_444
) {
in dnxhd_unquantize_c()
692
((mb_y << 4) * ctx->m.uvlinesize) + (mb_x << bs + ctx->
is_444
);
in dnxhd_get_blocks()
694
((mb_y << 4) * ctx->m.uvlinesize) + (mb_x << bs + ctx->
is_444
);
in dnxhd_get_blocks()
729
int uv_w = ctx->
is_444
? y_w : (y_w + 1) / 2;
in dnxhd_get_blocks()
732
uvlinesize = 16 + 16 * ctx->
is_444
;
in dnxhd_get_blocks()
754
if (!ctx->
is_444
) {
in dnxhd_get_blocks()
813
if (ctx->
is_444
) {
in dnxhd_switch_matrix()
[all...]
H
A
D
dnxhdenc.h
54
int
is_444
;
member
Completed in 4 milliseconds