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

1 2

  /external/libvpx/libvpx/vp8/encoder/
ratectrl.c 358 if (cpi->oxcf.fixed_q >= 0)
360 int Q = cpi->oxcf.key_q;
377 target = cpi->oxcf.starting_buffer_level / 2;
379 if(target > cpi->oxcf.target_bandwidth * 3 / 2)
380 target = cpi->oxcf.target_bandwidth * 3 / 2;
390 if (cpi->oxcf.number_of_layers == 1) {
414 if (cpi->oxcf.rc_max_intra_bitrate_pct)
417 * cpi->oxcf.rc_max_intra_bitrate_pct / 100;
450 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q
    [all...]
onyx_if.c 222 lc->starting_buffer_level = cpi->oxcf.starting_buffer_level;
223 lc->optimal_buffer_level = cpi->oxcf.optimal_buffer_level;
224 lc->maximum_buffer_size = cpi->oxcf.maximum_buffer_size;
225 lc->starting_buffer_level_in_ms = cpi->oxcf.starting_buffer_level_in_ms;
226 lc->optimal_buffer_level_in_ms = cpi->oxcf.optimal_buffer_level_in_ms;
227 lc->maximum_buffer_size_in_ms = cpi->oxcf.maximum_buffer_size_in_ms;
261 cpi->oxcf.target_bandwidth = lc->target_bandwidth;
262 cpi->oxcf.starting_buffer_level = lc->starting_buffer_level;
263 cpi->oxcf.optimal_buffer_level = lc->optimal_buffer_level;
264 cpi->oxcf.maximum_buffer_size = lc->maximum_buffer_size
1396 VP8_CONFIG *oxcf = &cpi->oxcf; local
    [all...]
mr_dissim.c 24 unsigned int iw = cpi->oxcf.Width*cpi->oxcf.mr_down_sampling_factor.den
25 + cpi->oxcf.mr_down_sampling_factor.num - 1;
27 low_res_w = iw/cpi->oxcf.mr_down_sampling_factor.num;
63 if (cpi->oxcf.mr_total_resolutions >1
64 && cpi->oxcf.mr_encoder_id < (cpi->oxcf.mr_total_resolutions - 1))
70 = (LOWER_RES_FRAME_INFO*)cpi->oxcf.mr_low_res_mode_info;
115 if(cpi->oxcf.play_alternate)
223 if (cpi->oxcf.mr_total_resolutions >
    [all...]
firstpass.c 56 #define POW1 (double)cpi->oxcf.two_pass_vbrbias/100.0
57 #define POW2 (double)cpi->oxcf.two_pass_vbrbias/100.0
355 if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER)
357 double buffer_fullness_ratio = (double)cpi->buffer_level / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.optimal_buffer_level);
362 max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
385 max_bits = (int)(((double)cpi->twopass.bits_left / (cpi->twopass.total_stats.count - (double)cpi->common.current_video_frame)) * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
651 if (raw_motion_error < cpi->oxcf.encode_breakout)
    [all...]
pickinter.c 415 = ((LOWER_RES_FRAME_INFO*)cpi->oxcf.mr_low_res_mode_info)->mb_info;
426 parent_mb_row = mb_row*cpi->oxcf.mr_down_sampling_factor.den
427 /cpi->oxcf.mr_down_sampling_factor.num;
428 parent_mb_col = mb_col*cpi->oxcf.mr_down_sampling_factor.den
429 /cpi->oxcf.mr_down_sampling_factor.num;
440 if (cpi->oxcf.mr_encoder_id == (cpi->oxcf.mr_total_resolutions - 1))
449 *cpi->oxcf.mr_down_sampling_factor.num
450 /cpi->oxcf.mr_down_sampling_factor.den;
452 *cpi->oxcf.mr_down_sampling_factor.nu
    [all...]
encodeframe.c 477 if(cpi->oxcf.tuning == VP8_TUNE_SSIM)
657 else if ((cpi->oxcf.number_of_layers > 1) &&
661 else if ((cpi->oxcf.number_of_layers > 1) &&
732 if (cpi->oxcf.cpu_used < 0)
733 cpi->Speed = -(cpi->oxcf.cpu_used);
774 if(cpi->oxcf.tuning == VP8_TUNE_SSIM)
1015 if ((cm->frame_type != KEY_FRAME) && ((cpi->oxcf.number_of_layers > 1) ||
    [all...]
bitstream.c 1047 if (cpi->oxcf.error_resilient_mode & VPX_ERROR_RESILIENT_PARTITIONS)
1068 if (cpi->oxcf.error_resilient_mode & VPX_ERROR_RESILIENT_PARTITIONS)
1095 if (cpi->oxcf.error_resilient_mode & VPX_ERROR_RESILIENT_PARTITIONS)
    [all...]
ethreading.c 161 if (cpi->oxcf.tuning == VP8_TUNE_SSIM)
505 if (cm->processor_core_count > 1 && cpi->oxcf.multi_threaded > 1)
508 int th_count = cpi->oxcf.multi_threaded - 1;
512 if (cpi->oxcf.multi_threaded > cm->processor_core_count)
picklpf.c 154 cm->sharpness_level = cpi->oxcf.Sharpness;
298 cm->sharpness_level = cpi->oxcf.Sharpness;
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 77 VP9_CONFIG oxcf; member in struct:vpx_codec_alg_priv
243 static vpx_codec_err_t set_vp9e_config(VP9_CONFIG *oxcf,
246 oxcf->version = cfg.g_profile | (vp8_cfg.experimental ? 0x4 : 0);
247 oxcf->width = cfg.g_w;
248 oxcf->height = cfg.g_h;
250 oxcf->framerate = (double)(cfg.g_timebase.den)
253 if (oxcf->framerate > 180) {
254 oxcf->framerate = 30;
259 oxcf->Mode = MODE_GOODQUALITY;
262 oxcf->Mode = MODE_FIRSTPASS
    [all...]
vp9_dx_iface.c 286 VP9D_CONFIG oxcf; local
291 oxcf.width = ctx->si.w;
292 oxcf.height = ctx->si.h;
293 oxcf.version = 9;
294 oxcf.postprocess = 0;
295 oxcf.max_threads = ctx->cfg.threads;
296 oxcf.inv_tile_order = ctx->invert_tile_order;
297 optr = vp9_create_decompressor(&oxcf);
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 82 VP8_CONFIG oxcf; member in struct:vpx_codec_alg_priv
285 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf,
290 oxcf->multi_threaded = cfg.g_threads;
291 oxcf->Version = cfg.g_profile;
293 oxcf->Width = cfg.g_w;
294 oxcf->Height = cfg.g_h;
295 oxcf->timebase = cfg.g_timebase;
297 oxcf->error_resilient_mode = cfg.g_error_resilient;
302 oxcf->Mode = MODE_BESTQUALITY;
305 oxcf->Mode = MODE_FIRSTPASS
    [all...]
vp8_dx_iface.c 430 VP8D_CONFIG oxcf; local
432 oxcf.Width = ctx->si.w;
433 oxcf.Height = ctx->si.h;
434 oxcf.Version = 9;
435 oxcf.postprocess = 0;
436 oxcf.max_threads = ctx->cfg.threads;
437 oxcf.error_concealment =
452 res = vp8_create_decoder_instances(&ctx->yv12_frame_buffers, &oxcf);
  /external/libvpx/libvpx/vp9/encoder/
vp9_onyx_if.c 724 sf->optimize_coefficients = !cpi->oxcf.lossless;
970 if (cpi->oxcf.lossless || cpi->mb.e_mbd.lossless) {
992 cpi->lookahead = vp9_lookahead_init(cpi->oxcf.width, cpi->oxcf.height,
994 cpi->oxcf.lag_in_frames);
    [all...]
vp9_ratectrl.c 158 if (cpi->oxcf.rc_max_intra_bitrate_pct) {
160 * cpi->oxcf.rc_max_intra_bitrate_pct / 100;
209 const int q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME]
210 : cpi->oxcf.fixed_q;
220 if (cpi->oxcf.fixed_q < 0) {
385 int key_freq = cpi->oxcf.key_freq > 0 ? cpi->oxcf.key_freq : 1;
388 if (cpi->oxcf.auto_key && av_key_frame_frequency > key_freq)
389 av_key_frame_frequency = cpi->oxcf.key_freq;
431 if (cpi->oxcf.fixed_q >= 0)
    [all...]
vp9_temporal_filter.c 372 int blur_type = cpi->oxcf.arnr_type;
462 int frames_bwd = cpi->oxcf.arnr_max_frames - 1;
463 int frames_fwd = cpi->oxcf.arnr_max_frames - 1;
475 switch (cpi->oxcf.arnr_type) {
503 frames_bwd += (cpi->oxcf.arnr_max_frames + 1) & 0x1;
512 cpi->active_arnr_strength = cpi->oxcf.arnr_strength;
514 cpi->active_arnr_strength = cpi->oxcf.arnr_strength - (8 - q);
vp9_firstpass.c 53 #define POW1 (double)cpi->oxcf.two_pass_vbrbias/100.0
54 #define POW2 (double)cpi->oxcf.two_pass_vbrbias/100.0
339 (cpi->oxcf.two_pass_vbrmax_section / 100.0);
    [all...]
vp9_picklpf.c 120 : cpi->oxcf.Sharpness;
  /external/libvpx/libvpx/vp9/decoder/
vp9_onyxd_int.h 29 VP9D_CONFIG oxcf; member in struct:VP9Decompressor
vp9_onyxd.h 61 VP9D_PTR vp9_create_decompressor(VP9D_CONFIG *oxcf);
vp9_onyxd_if.c 122 VP9D_PTR vp9_create_decompressor(VP9D_CONFIG *oxcf) {
142 pbi->oxcf = *oxcf;
  /external/libvpx/libvpx/vp8/decoder/
onyxd_int.h 73 VP8D_CONFIG oxcf; member in struct:VP8D_COMP
131 int vp8_create_decoder_instances(struct frame_buffers *fb, VP8D_CONFIG *oxcf);
onyxd_if.c 54 static struct VP8D_COMP * create_decompressor(VP8D_CONFIG *oxcf)
87 pbi->ec_enabled = oxcf->error_concealment;
478 int vp8_create_decoder_instances(struct frame_buffers *fb, VP8D_CONFIG *oxcf)
483 fb->pbi[0] = create_decompressor(oxcf);
490 fb->pbi[0]->max_threads = oxcf->max_threads;
  /external/libvpx/libvpx/vp8/common/
onyx.h 246 struct VP8_COMP* vp8_create_compressor(VP8_CONFIG *oxcf);
249 void vp8_init_config(struct VP8_COMP* onyx, VP8_CONFIG *oxcf);
250 void vp8_change_config(struct VP8_COMP* onyx, VP8_CONFIG *oxcf);
  /external/libvpx/libvpx/vp9/common/
vp9_onyx.h 176 VP9_PTR vp9_create_compressor(VP9_CONFIG *oxcf);
179 void vp9_change_config(VP9_PTR onyx, VP9_CONFIG *oxcf);

Completed in 449 milliseconds

1 2