Searched refs:cpu_used (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Donyx.h123 int cpu_used; member in struct:__anon13063
/external/libvpx/libvpx/vp8/common/
H A Donyx.h112 int cpu_used; member in struct:__anon24854
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_int.h198 int cpu_used; member in struct:VP9_CONFIG
400 int cpu_used; member in struct:VP9_COMP
H A Dvp9_onyx_if.c799 if (cpi->oxcf.cpu_used == -6)
806 cpi->oxcf.cpu_used = clamp(cpi->oxcf.cpu_used, -5, 5);
819 cpi->oxcf.cpu_used = clamp(cpi->oxcf.cpu_used, -5, 5);
930 cpi->speed = abs(cpi->oxcf.cpu_used);
/external/chromium_org/remoting/codec/
H A Dvideo_encoder_vpx.cc139 int cpu_used = lossless_encode ? 5 : 7; local
140 if (vpx_codec_control(codec.get(), VP8E_SET_CPUUSED, cpu_used))
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/
H A Dvp8_cx_iface.c28 int cpu_used; /** available cpu percentage in 1/16*/ member in struct:vp8_extracfg
46 0, /* cpu_used */
48 4, /* cpu_used */
182 RANGE_CHECK(vp8_cfg, cpu_used, -16, 16);
384 oxcf->cpu_used = vp8_cfg.cpu_used;
405 printf("cpu_used: %d\n", oxcf->cpu_used);
500 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args);
/external/libvpx/libvpx/vp8/
H A Dvp8_cx_iface.c26 int cpu_used; /** available cpu percentage in 1/16*/ member in struct:vp8_extracfg
54 0, /* cpu_used */
56 4, /* cpu_used */
192 RANGE_CHECK(vp8_cfg, cpu_used, -16, 16);
394 oxcf->cpu_used = vp8_cfg.cpu_used;
415 printf("cpu_used: %d\n", oxcf->cpu_used);
512 MAP(VP8E_SET_CPUUSED, xcfg.cpu_used);
/external/libvpx/libvpx/vp9/
H A Dvp9_cx_iface.c24 int cpu_used; // available cpu percentage in 1/16 member in struct:vp9_extracfg
54 0, // cpu_used
194 RANGE_CHECK(extra_cfg, cpu_used, -16, 16);
350 oxcf->cpu_used = extra_cfg->cpu_used;
400 printf("cpu_used: %d\n", oxcf->cpu_used);
484 MAP(VP8E_SET_CPUUSED, extra_cfg.cpu_used);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c1029 if (cpi->oxcf.cpu_used <= 5)
1030 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
1133 if (cpi->oxcf.cpu_used <= 5)
1134 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
1201 if (cpi->oxcf.cpu_used <= 5)
1202 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
1280 if (cpi->oxcf.cpu_used <= 5)
1281 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
H A Donyx_int.h475 int cpu_used; member in struct:VP8_COMP
H A Donyx_if.c1514 if (cpi->oxcf.cpu_used < -16)
1516 cpi->oxcf.cpu_used = -16;
1519 if (cpi->oxcf.cpu_used > 16)
1520 cpi->oxcf.cpu_used = 16;
1528 if (cpi->oxcf.cpu_used < -5)
1530 cpi->oxcf.cpu_used = -5;
1533 if (cpi->oxcf.cpu_used > 5)
1534 cpi->oxcf.cpu_used = 5;
1551 if (cpi->oxcf.cpu_used < -5)
1553 cpi->oxcf.cpu_used
[all...]
H A Dencodeframe.c745 if (cpi->oxcf.cpu_used < 0)
746 cpi->Speed = -(cpi->oxcf.cpu_used);
H A Drdopt.c345 milliseconds_for_compress = milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16;
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c1029 if (cpi->oxcf.cpu_used <= 5)
1030 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
1133 if (cpi->oxcf.cpu_used <= 5)
1134 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
1201 if (cpi->oxcf.cpu_used <= 5)
1202 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
1280 if (cpi->oxcf.cpu_used <= 5)
1281 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
H A Donyx_if.c1482 if (cpi->oxcf.cpu_used < -16)
1484 cpi->oxcf.cpu_used = -16;
1487 if (cpi->oxcf.cpu_used > 16)
1488 cpi->oxcf.cpu_used = 16;
1496 if (cpi->oxcf.cpu_used < -5)
1498 cpi->oxcf.cpu_used = -5;
1501 if (cpi->oxcf.cpu_used > 5)
1502 cpi->oxcf.cpu_used = 5;
1519 if (cpi->oxcf.cpu_used < -5)
1521 cpi->oxcf.cpu_used
[all...]
H A Donyx_int.h478 int cpu_used; member in struct:VP8_COMP
H A Dencodeframe.c732 if (cpi->oxcf.cpu_used < 0)
733 cpi->Speed = -(cpi->oxcf.cpu_used);
H A Drdopt.c346 milliseconds_for_compress = milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
H A Dvp9_cx_iface.c24 int cpu_used; // available cpu percentage in 1/16 member in struct:vp9_extracfg
45 0, // cpu_used
208 RANGE_CHECK(extra_cfg, cpu_used, -16, 16);
391 oxcf->speed = abs(extra_cfg->cpu_used);
454 printf("cpu_used: %d\n", oxcf->cpu_used);
541 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args);
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c334 static const arg_def_t cpu_used = ARG_DEF(NULL, "cpu-used", 1, variable
360 &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,
418 &cpu_used, &auto_altref, &sharpness, &static_thresh,
/external/libvpx/libvpx/
H A Dvpxenc.c352 static const arg_def_t cpu_used = ARG_DEF(NULL, "cpu-used", 1, variable
378 &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,
410 &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,

Completed in 302 milliseconds