OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DCT_MAX_VALUE
(Results
1 - 6
of
6
) sorted by null
/external/libvpx/libvpx/vp8/common/
entropy.h
53
#define
DCT_MAX_VALUE
2048
/external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c
35
static TOKENVALUE dct_value_tokens[
DCT_MAX_VALUE
* 2];
37
static int dct_value_cost[
DCT_MAX_VALUE
* 2];
42
TOKENVALUE *const t = dct_value_tokens +
DCT_MAX_VALUE
;
45
int i = -
DCT_MAX_VALUE
;
82
dct_value_cost[i +
DCT_MAX_VALUE
] = cost;
87
} while (++i <
DCT_MAX_VALUE
);
89
vp9_dct_value_tokens_ptr = dct_value_tokens +
DCT_MAX_VALUE
;
90
vp9_dct_value_cost_ptr = dct_value_cost +
DCT_MAX_VALUE
;
155
assert(-
DCT_MAX_VALUE
<= v && v <
DCT_MAX_VALUE
);
[
all
...]
/external/libvpx/libvpx/test/
dct32x32_test.cc
204
EXPECT_GE(4 *
DCT_MAX_VALUE
, abs(output_ref_block[j]))
205
<< "Error: 32x32 FDCT C has coefficient larger than 4*
DCT_MAX_VALUE
";
206
EXPECT_GE(4 *
DCT_MAX_VALUE
, abs(output_block[j]))
208
<< "4*
DCT_MAX_VALUE
";
dct16x16_test.cc
369
EXPECT_GE(4 *
DCT_MAX_VALUE
, abs(output_block[j]))
370
<< "Error: 16x16 FDCT has coefficient larger than 4*
DCT_MAX_VALUE
";
/external/libvpx/libvpx/vp9/common/
vp9_entropy.h
56
#define
DCT_MAX_VALUE
16384
/external/libvpx/libvpx/vp8/encoder/
tokenize.c
33
DCT_MAX_VALUE
;
34
const short *const vp8_dct_value_cost_ptr = dct_value_cost +
DCT_MAX_VALUE
;
46
TOKENVALUE *t = dct_value_tokens +
DCT_MAX_VALUE
;
49
int i = -
DCT_MAX_VALUE
;
90
dct_value_cost[i +
DCT_MAX_VALUE
] = cost;
96
while (++i <
DCT_MAX_VALUE
);
98
vp8_dct_value_tokens_ptr = dct_value_tokens +
DCT_MAX_VALUE
;
99
vp8_dct_value_cost_ptr = dct_value_cost +
DCT_MAX_VALUE
;
Completed in 48 milliseconds