HomeSort by relevance Sort by last modified time
    Searched refs:oxcf (Results 1 - 15 of 15) sorted by null

  /external/libvpx/vp8/encoder/
onyx_if.c     [all...]
ratectrl.c 337 if (cpi->oxcf.fixed_q >= 0)
375 /*if ( cpi->oxcf.fixed_q == -1)
377 if ( cpi->oxcf.play_alternate && ( (cpi->last_boost/2) > (100+(AF_THRESH*cpi->frames_till_gf_update_due)) ) )
402 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;
517 if (cpi->oxcf.fixed_q == -1)
555 /*if ( cpi->oxcf.fixed_q == -1)
557 if ( cpi->oxcf.play_alternate && (cpi->last_boost > (100 + (AF_THRESH*cpi->frames_till_gf_update_due)) ) )
584 Q = (cpi->oxcf.fixed_q >= 0) ? cpi->oxcf.fixed_q : cpi->avg_frame_qindex
    [all...]
firstpass.c 62 #define POW1 (double)cpi->oxcf.two_pass_vbrbias/100.0
63 #define POW2 (double)cpi->oxcf.two_pass_vbrbias/100.0
218 if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER)
220 double buffer_fullness_ratio = (double)cpi->buffer_level / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.optimal_buffer_level);
223 max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
241 max_bits = (int)(((double)cpi->bits_left / (cpi->total_stats.count - (double)cpi->common.current_video_frame)) * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
932 if (cpi->oxcf.cpu_used <= 5)
933 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
    [all...]
ethreading.c 417 if (cpi->processor_core_count > 1 && cpi->oxcf.multi_threaded > 1)
421 if (cpi->oxcf.multi_threaded > cpi->processor_core_count)
424 cpi->encoding_thread_count = cpi->oxcf.multi_threaded - 1;
picklpf.c 169 cm->sharpness_level = cpi->oxcf.Sharpness;
317 cm->sharpness_level = cpi->oxcf.Sharpness;
onyx_int.h 261 VP8_CONFIG oxcf; member in struct:__anon5299
encodeframe.c 621 if (cpi->oxcf.cpu_used < 0)
622 cpi->Speed = -(cpi->oxcf.cpu_used);
    [all...]
rdopt.c 344 int used = cpi->oxcf.cpu_used;
346 int milliseconds_for_compress = (int)(1000000 / cpi->oxcf.frame_rate);
348 milliseconds_for_compress = milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16;
    [all...]
  /external/libvpx/vp8/
vp8_cx_iface.c 78 VP8_CONFIG oxcf; member in struct:vpx_codec_alg_priv
231 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf,
235 oxcf->multi_threaded = cfg.g_threads;
236 oxcf->Version = cfg.g_profile;
238 oxcf->Width = cfg.g_w;
239 oxcf->Height = cfg.g_h;
241 oxcf->frame_rate = (double)(cfg.g_timebase.den) / (double)(cfg.g_timebase.num);
243 if (oxcf->frame_rate > 180)
245 oxcf->frame_rate = 30;
248 oxcf->error_resilient_mode = cfg.g_error_resilient
    [all...]
vp8_dx_iface.c 375 VP8D_CONFIG oxcf; local
380 oxcf.Width = ctx->si.w;
381 oxcf.Height = ctx->si.h;
382 oxcf.Version = 9;
383 oxcf.postprocess = 0;
384 oxcf.max_threads = ctx->cfg.threads;
386 optr = vp8dx_create_decompressor(&oxcf);
  /external/libvpx/vp8/common/
onyx.h 197 VP8_PTR vp8_create_compressor(VP8_CONFIG *oxcf);
200 void vp8_init_config(VP8_PTR onyx, VP8_CONFIG *oxcf);
201 void vp8_change_config(VP8_PTR onyx, VP8_CONFIG *oxcf);
onyxd.h 59 VP8D_PTR vp8dx_create_decompressor(VP8D_CONFIG *oxcf);
  /external/libvpx/vp8/decoder/
onyxd_int.h 78 VP8D_CONFIG oxcf; member in struct:VP8Decompressor
onyxd_if.c 88 VP8D_PTR vp8dx_create_decompressor(VP8D_CONFIG *oxcf)
114 pbi->max_threads = oxcf->max_threads;
  /external/libvpx/vpx_scale/arm/neon/
vp8_vpxyv12_copysrcframe_func_neon.asm 21 ;the encoding. The buffer has a width and height of cpi->oxcf.Width and cpi->oxcf.Height,

Completed in 79 milliseconds