/external/libvpx/libvpx/vp8/ |
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/vpx_scale/arm/neon/ |
vp8_vpxyv12_copysrcframe_func_neon.asm | 21 ;of the encoding. The buffer has a width and height of cpi->oxcf.Width and 22 ;cpi->oxcf.Height, which can be ANY numbers(NOT always multiples of 16 or 4).
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
vp8_dx_iface.c | 432 VP8D_CONFIG oxcf; local 434 oxcf.Width = ctx->si.w; 435 oxcf.Height = ctx->si.h; 436 oxcf.Version = 9; 437 oxcf.postprocess = 0; 438 oxcf.max_threads = ctx->cfg.threads; 439 oxcf.error_concealment = 454 res = vp8_create_decoder_instances(&ctx->yv12_frame_buffers, &oxcf);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/arm/neon/ |
vp8_vpxyv12_copysrcframe_func_neon.asm | 21 ;of the encoding. The buffer has a width and height of cpi->oxcf.Width and 22 ;cpi->oxcf.Height, which can be ANY numbers(NOT always multiples of 16 or 4).
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/ |
onyxd_if.c | 54 static struct VP8D_COMP * create_decompressor(VP8D_CONFIG *oxcf) 87 pbi->ec_enabled = oxcf->error_concealment; 451 int vp8_create_decoder_instances(struct frame_buffers *fb, VP8D_CONFIG *oxcf) 456 fb->pbi[0] = create_decompressor(oxcf); 463 fb->pbi[0]->max_threads = oxcf->max_threads;
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
vp9_encoder.h | 322 VP9EncoderConfig oxcf; member in struct:VP9_COMP 384 int active_arnr_frames; // <= cpi->oxcf.arnr_max_frames 385 int active_arnr_strength; // <= cpi->oxcf.arnr_max_strength 521 struct VP9_COMP *vp9_create_compressor(VP9EncoderConfig *oxcf); 524 void vp9_change_config(VP9_COMP *cpi, const VP9EncoderConfig *oxcf);
|
vp9_picklpf.c | 145 : cpi->oxcf.sharpness;
|
/external/libvpx/libvpx/vp8/decoder/ |
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/vp9/encoder/ |
vp9_onyx_int.h | 288 VP9_CONFIG oxcf; member in struct:VP9_COMP 376 int active_arnr_frames; // <= cpi->oxcf.arnr_max_frames 377 int active_arnr_strength; // <= cpi->oxcf.arnr_max_strength 522 struct VP9_COMP *vp9_create_compressor(VP9_CONFIG *oxcf); 525 void vp9_change_config(VP9_COMP *cpi, const VP9_CONFIG *oxcf);
|
vp9_firstpass.c | 275 cpi->oxcf.two_pass_vbrbias / 100.0); 339 static int frame_max_bits(const RATE_CONTROL *rc, const VP9_CONFIG *oxcf) { 341 (int64_t)oxcf->two_pass_vbrmax_section) / 100; 600 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 607 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 643 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 654 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 675 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 946 const VP9_CONFIG *const oxcf = &cpi->oxcf; local 1408 VP9_CONFIG *const oxcf = &cpi->oxcf; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_onyx_int.h | 289 VP9_CONFIG oxcf; member in struct:VP9_COMP 377 int active_arnr_frames; // <= cpi->oxcf.arnr_max_frames 378 int active_arnr_strength; // <= cpi->oxcf.arnr_max_strength 522 struct VP9_COMP *vp9_create_compressor(VP9_CONFIG *oxcf); 525 void vp9_change_config(VP9_COMP *cpi, const VP9_CONFIG *oxcf);
|
vp9_firstpass.c | 272 cpi->oxcf.two_pass_vbrbias / 100.0); 339 (int64_t)cpi->oxcf.two_pass_vbrmax_section) / 100; 599 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 606 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 642 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 653 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 674 if (cpi->oxcf.aq_mode == VARIANCE_AQ) { 945 const VP9_CONFIG *const oxcf = &cpi->oxcf; local [all...] |
vp9_encodeframe.c | 254 if (cpi->oxcf.aq_mode != VARIANCE_AQ) { 862 if (cpi->oxcf.aq_mode == COMPLEXITY_AQ) { 870 else if (cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ) { 901 if (cpi->oxcf.aq_mode) [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
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...] |
picklpf.c | 154 cm->sharpness_level = cpi->oxcf.Sharpness; 298 cm->sharpness_level = cpi->oxcf.Sharpness;
|
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)
|
/external/libvpx/libvpx/vp8/encoder/ |
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...] |
picklpf.c | 154 cm->sharpness_level = cpi->oxcf.Sharpness; 298 cm->sharpness_level = cpi->oxcf.Sharpness;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
encodeframe.c | 478 if(cpi->oxcf.tuning == VP8_TUNE_SSIM) 658 else if ((cpi->oxcf.number_of_layers > 1) && 662 else if ((cpi->oxcf.number_of_layers > 1) && 733 if (cpi->oxcf.cpu_used < 0) 734 cpi->Speed = -(cpi->oxcf.cpu_used); 775 if(cpi->oxcf.tuning == VP8_TUNE_SSIM) 1016 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...] |
picklpf.c | 154 cm->sharpness_level = cpi->oxcf.Sharpness; 298 cm->sharpness_level = cpi->oxcf.Sharpness;
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decoder.c | 113 VP9Decoder *vp9_decoder_create(const VP9D_CONFIG *oxcf) { 137 pbi->oxcf = *oxcf;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
vp9_decoder.c | 113 VP9D_COMP *vp9_create_decompressor(const VP9D_CONFIG *oxcf) { 136 pbi->oxcf = *oxcf;
|