OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RDMULT
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/libvpx/vp8/encoder/
rdopt.c
238
cpi->
RDMULT
= (int)(rdconst * (capped_q * capped_q));
251
cpi->
RDMULT
= (int)(rdconst * (modq * modq));
257
cpi->
RDMULT
+= (cpi->
RDMULT
* rd_iifactor[31]) >> 4;
259
cpi->
RDMULT
+=
260
(cpi->
RDMULT
* rd_iifactor[cpi->twopass.next_iiratio]) >> 4;
263
cpi->mb.errorperbit = (cpi->
RDMULT
/ 110);
273
if (cpi->
RDMULT
> 1000)
276
cpi->
RDMULT
/= 100;
681
this_rd = RDCOST(x->
rdmult
, x->rddiv, rate, distortion)
[
all
...]
onyx_int.h
360
int
RDMULT
;
ethreading.c
156
x->
rdmult
= cpi->
RDMULT
;
encodeframe.c
339
x->
rdmult
+= *(x->mb_activity_ptr) * (x->
rdmult
>> 2);
340
x->errorperbit = x->
rdmult
* 100 /(110 * x->rddiv);
351
x->
rdmult
= (unsigned int)(((int64_t)x->
rdmult
*b + (a>>1))/a);
352
x->errorperbit = x->
rdmult
* 100 /(110 * x->rddiv);
456
x->
rdmult
= cpi->
RDMULT
;
[
all
...]
Completed in 41 milliseconds