OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thresh_mult
(Results
1 - 6
of
6
) sorted by null
/external/libvpx/libvpx/vp9/encoder/
vp9_onyx_if.c
593
sf->
thresh_mult
[i] = mode == 0 ? -500 : 0;
595
sf->
thresh_mult
[THR_NEARESTMV] = 0;
596
sf->
thresh_mult
[THR_NEARESTG] = 0;
597
sf->
thresh_mult
[THR_NEARESTA] = 0;
599
sf->
thresh_mult
[THR_DC] += 1000;
601
sf->
thresh_mult
[THR_NEWMV] += 1000;
602
sf->
thresh_mult
[THR_NEWA] += 1000;
603
sf->
thresh_mult
[THR_NEWG] += 1000;
605
sf->
thresh_mult
[THR_NEARMV] += 1000;
606
sf->
thresh_mult
[THR_NEARA] += 1000
[
all
...]
vp9_onyx_int.h
244
int
thresh_mult
[MAX_MODES];
member in struct:__anon23089
vp9_rdopt.c
203
// range of values used for cpi->sf.
thresh_mult
[]
207
if (cpi->sf.
thresh_mult
[i] < thresh_max) {
209
cpi->sf.
thresh_mult
[i] * q *
[
all
...]
/external/libvpx/libvpx/vp8/encoder/
onyx_if.c
787
sf->
thresh_mult
[i] = 0;
810
sf->
thresh_mult
[THR_ZERO1] =
811
sf->
thresh_mult
[THR_NEAREST1] =
812
sf->
thresh_mult
[THR_NEAR1] =
813
sf->
thresh_mult
[THR_DC] = 0; /* always */
815
sf->
thresh_mult
[THR_ZERO2] =
816
sf->
thresh_mult
[THR_ZERO3] =
817
sf->
thresh_mult
[THR_NEAREST2] =
818
sf->
thresh_mult
[THR_NEAREST3] =
819
sf->
thresh_mult
[THR_NEAR2]
[
all
...]
onyx_int.h
186
int
thresh_mult
[MAX_MODES];
member in struct:__anon23013
rdopt.c
285
if (cpi->sf.
thresh_mult
[i] < INT_MAX)
287
x->rd_threshes[i] = cpi->sf.
thresh_mult
[i] * q / 100;
303
if (cpi->sf.
thresh_mult
[i] < (INT_MAX / q))
305
x->rd_threshes[i] = cpi->sf.
thresh_mult
[i] * q;
[
all
...]
Completed in 3285 milliseconds