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

  /external/libvpx/vp8/
vp8_cx_iface.c 83 VP8_CONFIG oxcf; member in struct:vpx_codec_alg_priv
248 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf,
252 oxcf->multi_threaded = cfg.g_threads;
253 oxcf->Version = cfg.g_profile;
255 oxcf->Width = cfg.g_w;
256 oxcf->Height = cfg.g_h;
258 oxcf->frame_rate = (double)(cfg.g_timebase.den) / (double)(cfg.g_timebase.num);
260 if (oxcf->frame_rate > 180)
262 oxcf->frame_rate = 30;
265 oxcf->error_resilient_mode = cfg.g_error_resilient
    [all...]
vp8_dx_iface.c 357 VP8D_CONFIG oxcf; local
362 oxcf.Width = ctx->si.w;
363 oxcf.Height = ctx->si.h;
364 oxcf.Version = 9;
365 oxcf.postprocess = 0;
366 oxcf.max_threads = ctx->cfg.threads;
368 optr = vp8dx_create_decompressor(&oxcf);
  /external/libvpx/vp8/encoder/
ratectrl.c 340 if (cpi->oxcf.fixed_q >= 0)
378 /*if ( cpi->oxcf.fixed_q == -1)
380 if ( cpi->oxcf.play_alternate && ( (cpi->last_boost/2) > (100+(AF_THRESH*cpi->frames_till_gf_update_due)) ) )
405 int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q;
520 if (cpi->oxcf.fixed_q == -1)
558 /*if ( cpi->oxcf.fixed_q == -1)
560 if ( cpi->oxcf.play_alternate && (cpi->last_boost > (100 + (AF_THRESH*cpi->frames_till_gf_update_due)) ) )
587 Q = (cpi->oxcf.fixed_q >= 0) ? cpi->oxcf.fixed_q : cpi->avg_frame_qindex
    [all...]
onyx_if.c     [all...]
firstpass.c 63 #define POW1 (double)cpi->oxcf.two_pass_vbrbias/100.0
64 #define POW2 (double)cpi->oxcf.two_pass_vbrbias/100.0
249 if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER)
251 double buffer_fullness_ratio = (double)cpi->buffer_level / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.optimal_buffer_level);
254 max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
272 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));
    [all...]
temporal_filter.c 487 int strength = cpi->oxcf.arnr_strength;
489 int blur_type = cpi->oxcf.arnr_type;
496 num_frames_backward += cpi->oxcf.lag_in_frames;
498 num_frames_forward = cpi->oxcf.lag_in_frames - (num_frames_backward + 1);
551 + frames_to_blur_forward) % cpi->oxcf.lag_in_frames;
574 which_buffer += cpi->oxcf.lag_in_frames;
ethreading.c 150 if (cpi->oxcf.tuning == VP8_TUNE_SSIM)
464 if (cpi->processor_core_count > 1 && cpi->oxcf.multi_threaded > 1)
467 int th_count = cpi->oxcf.multi_threaded - 1;
469 if (cpi->oxcf.multi_threaded > cpi->processor_core_count)
picklpf.c 172 cm->sharpness_level = cpi->oxcf.Sharpness;
330 cm->sharpness_level = cpi->oxcf.Sharpness;
onyx_int.h 281 VP8_CONFIG oxcf; member in struct:__anon8495
396 int active_arnr_frames; // <= cpi->oxcf.arnr_max_frames
bitstream.c     [all...]
encodeframe.c 553 if(cpi->oxcf.tuning == VP8_TUNE_SSIM)
759 if (cpi->oxcf.cpu_used < 0)
760 cpi->Speed = -(cpi->oxcf.cpu_used);
    [all...]
rdopt.c 308 int used = cpi->oxcf.cpu_used;
310 int milliseconds_for_compress = (int)(1000000 / cpi->oxcf.frame_rate);
312 milliseconds_for_compress = milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16;
    [all...]
pickinter.c 605 if (cpi->is_src_frame_alt_ref && (cpi->oxcf.arnr_max_frames == 0))
  /external/libvpx/vp8/common/
onyx.h 201 VP8_PTR vp8_create_compressor(VP8_CONFIG *oxcf);
204 void vp8_init_config(VP8_PTR onyx, VP8_CONFIG *oxcf);
205 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 54 VP8D_PTR vp8dx_create_decompressor(VP8D_CONFIG *oxcf)
81 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 593 milliseconds