OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VP8BitCost
(Results
1 - 9
of
9
) sorted by null
/external/webp/src/dsp/
cost_mips_dsp_r2.c
29
int cost = (ctx0 == 0) ?
VP8BitCost
(1, p0) : 0;
38
return
VP8BitCost
(0, p0);
88
cost +=
VP8BitCost
(0, last_p0);
cost.c
331
int cost = (ctx0 == 0) ?
VP8BitCost
(1, p0) : 0;
334
return
VP8BitCost
(0, p0);
351
cost +=
VP8BitCost
(0, last_p0);
cost_mips32.c
29
int cost = (ctx0 == 0) ?
VP8BitCost
(1, p0) : 0;
38
return
VP8BitCost
(0, p0);
93
cost +=
VP8BitCost
(0, last_p0);
cost_sse2.c
56
int cost = (ctx0 == 0) ?
VP8BitCost
(1, p0) : 0;
59
return
VP8BitCost
(0, p0);
99
cost +=
VP8BitCost
(0, last_p0);
/external/webp/src/enc/
cost_enc.h
59
static WEBP_INLINE int
VP8BitCost
(int bit, uint8_t proba) {
frame_enc.c
119
size += nb_events *
VP8BitCost
(1, proba->skip_proba_)
120
+ (nb_mbs - nb_events) *
VP8BitCost
(0, proba->skip_proba_);
135
return nb *
VP8BitCost
(1, proba) + (total - nb) *
VP8BitCost
(0, proba);
158
+
VP8BitCost
(0, update_proba);
160
+
VP8BitCost
(1, update_proba)
163
size +=
VP8BitCost
(use_new_p, update_proba);
218
p[0] * (
VP8BitCost
(0, probas[0]) +
VP8BitCost
(0, probas[1])) +
219
p[1] * (
VP8BitCost
(0, probas[0]) + VP8BitCost(1, probas[1]))
[
all
...]
cost_enc.c
49
cost +=
VP8BitCost
(bits & 1, probas[i]);
71
const int cost0 = (ctx > 0) ?
VP8BitCost
(1, p[0]) : 0;
72
const int cost_base =
VP8BitCost
(1, p[1]) + cost0;
74
table[0] =
VP8BitCost
(0, p[1]) + cost0;
96
// by calling
VP8BitCost
().
98
// note: these values include the fixed
VP8BitCost
(1, 145) mode selection cost.
token_enc.c
272
size +=
VP8BitCost
(bit, token & 0xffu);
274
size +=
VP8BitCost
(bit, probas[token & 0x3fffu]);
quant_enc.c
624
cost =
VP8BitCost
(0, last_proba);
629
const score_t rate = (ctx0 == 0) ?
VP8BitCost
(1, last_proba) : 0;
705
(n < 15) ?
VP8BitCost
(0, probas[band][ctx][0]) : 0;
[
all
...]
Completed in 518 milliseconds