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:NBLOCKS
(Results
1 - 4
of
4
) sorted by relevance
/third_party/ffmpeg/libavcodec/
H
A
D
ra144enc.c
54
avctx->frame_size =
NBLOCKS
* BLOCKSIZE;
in ra144_encode_init()
431
int32_t lpc_data[
NBLOCKS
* BLOCKSIZE];
in ra144_encode_frame()
434
int16_t block_coefs[
NBLOCKS
][LPC_ORDER];
in ra144_encode_frame()
436
unsigned int refl_rms[
NBLOCKS
]; /**< RMS of the reflection coefficients */
in ra144_encode_frame()
460
for (j = 0; j < frame->nb_samples && i <
NBLOCKS
* BLOCKSIZE; i++, j++) {
in ra144_encode_frame()
465
if (i <
NBLOCKS
* BLOCKSIZE)
in ra144_encode_frame()
466
memset(&lpc_data[i], 0, (
NBLOCKS
* BLOCKSIZE - i) * sizeof(*lpc_data));
in ra144_encode_frame()
470
ff_lpc_calc_coefs(&ractx->lpc_ctx, lpc_data,
NBLOCKS
* BLOCKSIZE, LPC_ORDER,
in ra144_encode_frame()
474
block_coefs[
NBLOCKS
- 1][i] = -lpc_coefs[LPC_ORDER - 1][i]
in ra144_encode_frame()
482
if (ff_eval_refl(lpc_refl, block_coefs[
NBLOCKS
in ra144_encode_frame()
[all...]
H
A
D
ra144dec.c
69
unsigned int refl_rms[
NBLOCKS
]; // RMS of the reflection coefficients
in ra144_decode_frame()
70
int16_t block_coefs[
NBLOCKS
][LPC_ORDER]; // LPC coefficients of each sub-block
in ra144_decode_frame()
88
frame->nb_samples =
NBLOCKS
* BLOCKSIZE;
in ra144_decode_frame()
112
for (i=0; i <
NBLOCKS
; i++) {
in ra144_decode_frame()
H
A
D
ra144.h
33
#define
NBLOCKS
4 ///< number of subblocks within a block
macro
57
int16_t curr_block[
NBLOCKS
* BLOCKSIZE];
H
A
D
ra144.c
1660
int b =
NBLOCKS
- a;
in ff_interp()
Completed in 4 milliseconds