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 - 7
of
7
) sorted by null
/external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c
24
static TOKENVALUE dct_value_tokens[
DCT_MAX_VALUE
* 2];
26
static int dct_value_cost[
DCT_MAX_VALUE
* 2];
30
TOKENVALUE *const t = dct_value_tokens +
DCT_MAX_VALUE
;
33
int i = -
DCT_MAX_VALUE
;
70
dct_value_cost[i +
DCT_MAX_VALUE
] = cost;
73
} while (++i <
DCT_MAX_VALUE
);
75
vp9_dct_value_tokens_ptr = dct_value_tokens +
DCT_MAX_VALUE
;
76
vp9_dct_value_cost_ptr = dct_value_cost +
DCT_MAX_VALUE
;
138
assert(-
DCT_MAX_VALUE
<= v && v <
DCT_MAX_VALUE
);
[
all
...]
/external/libvpx/libvpx/vp8/common/
entropy.h
53
#define
DCT_MAX_VALUE
2048
/external/libvpx/libvpx/vp9/common/
vp9_entropy.h
64
#define
DCT_MAX_VALUE
16384
/external/libvpx/libvpx/test/
dct32x32_test.cc
203
EXPECT_GE(4 *
DCT_MAX_VALUE
, abs(output_ref_block[j]))
204
<< "Error: 32x32 FDCT C has coefficient larger than 4*
DCT_MAX_VALUE
";
205
EXPECT_GE(4 *
DCT_MAX_VALUE
, abs(output_block[j]))
207
<< "4*
DCT_MAX_VALUE
";
fdct4x4_test.cc
143
EXPECT_GE(4 *
DCT_MAX_VALUE
, abs(output_block[j]))
144
<< "Error: 16x16 FDCT has coefficient larger than 4*
DCT_MAX_VALUE
";
dct16x16_test.cc
371
EXPECT_GE(4 *
DCT_MAX_VALUE
, abs(output_block[j]))
372
<< "Error: 16x16 FDCT has coefficient larger than 4*
DCT_MAX_VALUE
";
/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 51 milliseconds