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

  /external/libvpx/vp8/
vp8_cx_iface.c 79 VP8_CONFIG oxcf; member in struct:vpx_codec_alg_priv
240 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf,
244 oxcf->multi_threaded = cfg.g_threads;
245 oxcf->Version = cfg.g_profile;
247 oxcf->Width = cfg.g_w;
248 oxcf->Height = cfg.g_h;
250 oxcf->frame_rate = (double)(cfg.g_timebase.den) / (double)(cfg.g_timebase.num);
252 if (oxcf->frame_rate > 180)
254 oxcf->frame_rate = 30;
257 oxcf->error_resilient_mode = cfg.g_error_resilient
    [all...]
vp8_dx_iface.c 381 VP8D_CONFIG oxcf; local
386 oxcf.Width = ctx->si.w;
387 oxcf.Height = ctx->si.h;
388 oxcf.Version = 9;
389 oxcf.postprocess = 0;
390 oxcf.max_threads = ctx->cfg.threads;
392 optr = vp8dx_create_decompressor(&oxcf);
  /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 61 #define POW1 (double)cpi->oxcf.two_pass_vbrbias/100.0
62 #define POW2 (double)cpi->oxcf.two_pass_vbrbias/100.0
208 if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER)
210 double buffer_fullness_ratio = (double)cpi->buffer_level / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.optimal_buffer_level);
213 max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
231 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));
936 if (cpi->oxcf.cpu_used <= 5)
937 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04);
    [all...]
temporal_filter.c 552 int strength = cpi->oxcf.arnr_strength;
554 int blur_type = cpi->oxcf.arnr_type;
561 num_frames_backward += cpi->oxcf.lag_in_frames;
563 num_frames_forward = cpi->oxcf.lag_in_frames - (num_frames_backward + 1);
616 + frames_to_blur_forward) % cpi->oxcf.lag_in_frames;
639 which_buffer += cpi->oxcf.lag_in_frames;
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 172 cm->sharpness_level = cpi->oxcf.Sharpness;
331 cm->sharpness_level = cpi->oxcf.Sharpness;
onyx_int.h 270 VP8_CONFIG oxcf; member in struct:__anon5136
388 int active_arnr_frames; // <= cpi->oxcf.arnr_max_frames
bitstream.c     [all...]
encodeframe.c 623 if (cpi->oxcf.cpu_used < 0)
624 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/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 91 VP8D_PTR vp8dx_create_decompressor(VP8D_CONFIG *oxcf)
117 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 83 milliseconds