Searched defs:oxcf (Results 1 - 12 of 12) sorted by relevance

/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_onyxd_int.h29 VP9D_CONFIG oxcf; member in struct:VP9Decompressor
H A Dvp9_onyxd_if.c122 VP9D_PTR vp9_create_decompressor(VP9D_CONFIG *oxcf) { argument
142 pbi->oxcf = *oxcf;
/external/libvpx/libvpx/vp8/decoder/
H A Donyxd_if.c54 static struct VP8D_COMP * create_decompressor(VP8D_CONFIG *oxcf) argument
87 pbi->ec_enabled = oxcf->error_concealment;
478 int vp8_create_decoder_instances(struct frame_buffers *fb, VP8D_CONFIG *oxcf) argument
483 fb->pbi[0] = create_decompressor(oxcf);
490 fb->pbi[0]->max_threads = oxcf->max_threads;
H A Donyxd_int.h73 VP8D_CONFIG oxcf; member in struct:VP8D_COMP
131 int vp8_create_decoder_instances(struct frame_buffers *fb, VP8D_CONFIG *oxcf);
/external/libvpx/libvpx/vp8/
H A Dvp8_cx_iface.c82 VP8_CONFIG oxcf; member in struct:vpx_codec_alg_priv
285 static vpx_codec_err_t set_vp8e_config(VP8_CONFIG *oxcf, argument
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
[all...]
H A Dvp8_dx_iface.c430 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/
H A Dvp9_dx_iface.c286 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);
H A Dvp9_cx_iface.c77 VP9_CONFIG oxcf; member in struct:vpx_codec_alg_priv
243 static vpx_codec_err_t set_vp9e_config(VP9_CONFIG *oxcf, argument
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
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c222 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
301 init_temporal_layer_context(VP8_COMP *cpi, VP8_CONFIG *oxcf, const int layer, double prev_layer_framerate) argument
361 reset_temporal_layer_change(VP8_COMP *cpi, VP8_CONFIG *oxcf, const int prev_num_layers) argument
1322 init_config(VP8_COMP *cpi, VP8_CONFIG *oxcf) argument
1396 VP8_CONFIG *oxcf = &cpi->oxcf; local
1442 vp8_change_config(VP8_COMP *cpi, VP8_CONFIG *oxcf) argument
1777 vp8_create_compressor(VP8_CONFIG *oxcf) argument
[all...]
H A Donyx_int.h311 VP8_CONFIG oxcf; member in struct:VP8_COMP
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c724 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);
1000 cpi->oxcf.width, cpi->oxcf.height,
1128 cpi->oxcf.framerate = framerate;
1129 cpi->output_framerate = cpi->oxcf.framerate;
1130 cpi->per_frame_bandwidth = (int)(cpi->oxcf
1178 init_config(VP9_PTR ptr, VP9_CONFIG *oxcf) argument
1230 vp9_change_config(VP9_PTR ptr, VP9_CONFIG *oxcf) argument
1559 vp9_create_compressor(VP9_CONFIG *oxcf) argument
[all...]
H A Dvp9_onyx_int.h313 VP9_CONFIG oxcf; member in struct:VP9_COMP
423 int active_arnr_frames; // <= cpi->oxcf.arnr_max_frames
424 int active_arnr_strength; // <= cpi->oxcf.arnr_max_strength

Completed in 5908 milliseconds