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:ff_tta_shift_16
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
ttadata.c
38
const uint32_t * const
ff_tta_shift_16
= ff_tta_shift_1 + 4;
variable
46
c->sum0 =
ff_tta_shift_16
[k0];
in ff_tta_rice_init()
47
c->sum1 =
ff_tta_shift_16
[k1];
in ff_tta_rice_init()
H
A
D
ttaenc.c
140
if (rice->k0 > 0 && rice->sum0 <
ff_tta_shift_16
[rice->k0])
in tta_encode_frame()
142
else if (rice->sum0 >
ff_tta_shift_16
[rice->k0 + 1])
in tta_encode_frame()
150
if (rice->k1 > 0 && rice->sum1 <
ff_tta_shift_16
[rice->k1])
in tta_encode_frame()
152
else if (rice->sum1 >
ff_tta_shift_16
[rice->k1 + 1])
in tta_encode_frame()
H
A
D
tta.c
306
if (rice->k1 > 0 && rice->sum1 <
ff_tta_shift_16
[rice->k1])
in tta_decode_frame()
308
else if(rice->sum1 >
ff_tta_shift_16
[rice->k1 + 1])
in tta_decode_frame()
313
if (rice->k0 > 0 && rice->sum0 <
ff_tta_shift_16
[rice->k0])
in tta_decode_frame()
315
else if(rice->sum0 >
ff_tta_shift_16
[rice->k0 + 1])
in tta_decode_frame()
H
A
D
ttadata.h
45
extern const uint32_t * const
ff_tta_shift_16
;
Completed in 2 milliseconds