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

  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 81 cpi->twopass.stats_in = Position;
85 if (cpi->twopass.stats_in >= cpi->twopass.stats_in_end) return EOF;
87 *next_frame = *cpi->twopass.stats_in;
94 FIRSTPASS_STATS *fps_ptr = cpi->twopass.stats_in;
98 if (&fps_ptr[offset] >= cpi->twopass.stats_in_end) return EOF;
100 if (&fps_ptr[offset] < cpi->twopass.stats_in_start) return EOF;
108 if (cpi->twopass.stats_in >= cpi->twopass.stats_in_end) return EOF;
110 *fps = *cpi->twopass.stats_in
    [all...]
picklpf.c 124 if (cpi->twopass.section_intra_rating > 8) {
321 if (cpi->twopass.section_intra_rating < 20) {
322 Bias = Bias * cpi->twopass.section_intra_rating / 20;
onyx_if.c     [all...]
onyx_int.h 598 } twopass; member in struct:VP8_COMP
ratectrl.c 568 cpi->per_frame_bandwidth = cpi->twopass.gf_bits;
    [all...]
rdopt.c 190 if (cpi->twopass.next_iiratio > 31) {
194 (cpi->RDMULT * rd_iifactor[cpi->twopass.next_iiratio]) >> 4;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 239 static double get_distribution_av_err(VP9_COMP *cpi, TWO_PASS *const twopass) {
241 twopass->total_stats.weight / twopass->total_stats.count;
244 return av_weight * twopass->mean_mod_score;
246 return (twopass->total_stats.coded_error * av_weight) /
247 twopass->total_stats.count;
274 const TWO_PASS *twopass,
295 modified_score /= DOUBLE_DIVIDE_CHECK(twopass->mean_mod_score);
315 zero_stats(&cpi->twopass.total_stats);
322 output_stats(&cpi->svc.layer_context[i].twopass.total_stats
1368 TWO_PASS *twopass = &cpi->twopass; local
1594 TWO_PASS *const twopass = &cpi->twopass; local
1698 TWO_PASS *const twopass = local
1881 TWO_PASS *const twopass = &cpi->twopass; local
2007 TWO_PASS *const twopass = &cpi->twopass; local
2109 const TWO_PASS *const twopass = &cpi->twopass; local
2175 TWO_PASS *const twopass = &cpi->twopass; local
2197 TWO_PASS *const twopass = &cpi->twopass; local
2374 TWO_PASS *const twopass = &cpi->twopass; local
2392 TWO_PASS *const twopass = &cpi->twopass; local
2830 TWO_PASS *const twopass = &cpi->twopass; local
3071 TWO_PASS *const twopass = &cpi->twopass; local
3120 const TWO_PASS *const twopass = local
3139 TWO_PASS *const twopass = &cpi->twopass; local
3306 TWO_PASS *const twopass = &cpi->twopass; local
    [all...]
vp9_svc_layercontext.h 32 TWO_PASS twopass; member in struct:__anon26271
vp9_picklpf.c 29 return cpi->twopass.section_intra_rating > 8 ? MAX_LOOP_FILTER * 3 / 4
102 if ((cpi->oxcf.pass == 2) && (cpi->twopass.section_intra_rating < 20))
103 bias = (bias * cpi->twopass.section_intra_rating) / 20;
vp9_speed_features.c 133 ((cpi->twopass.fr_content_type == FC_GRAPHICS_ANIMATION) ||
172 if (cpi->twopass.fr_content_type == FC_GRAPHICS_ANIMATION) {
187 TWO_PASS *const twopass = &cpi->twopass; local
188 if ((twopass->fr_content_type == FC_GRAPHICS_ANIMATION) ||
224 (cpi->twopass.fr_content_type == FC_GRAPHICS_ANIMATION) ? (1 << 23)
251 if (cpi->twopass.fr_content_type == FC_GRAPHICS_ANIMATION) {
280 if (cpi->twopass.fr_content_type == FC_GRAPHICS_ANIMATION) {
813 (cpi->twopass.fr_content_type == FC_GRAPHICS_ANIMATION) ? (1 << 20)
815 if (cpi->twopass.fr_content_type == FC_GRAPHICS_ANIMATION)
    [all...]
vp9_ratectrl.c 438 cpi->twopass.gf_group.rf_level[cpi->twopass.gf_group.index];
464 cpi->twopass.gf_group.rf_level[cpi->twopass.gf_group.index];
    [all...]
vp9_encoder.c 2757 TWO_PASS *const twopass = &cpi->twopass; local
4309 TWO_PASS *const twopass = &cpi->twopass; local
    [all...]
vp9_aq_complexity.c 135 low_var_thresh = (cpi->oxcf.pass == 2) ? VPXMAX(cpi->twopass.mb_av_energy,
vp9_svc_layercontext.c 295 cpi->twopass = lc->twopass;
334 lc->twopass = cpi->twopass;
362 TWO_PASS *const twopass = &svc->layer_context[i].twopass; local
367 twopass->total_stats.spatial_layer_id = i;
368 twopass->total_left_stats.spatial_layer_id = i;
    [all...]
vp9_aq_variance.c 201 (cpi->oxcf.pass == 2) ? cpi->twopass.mb_av_energy : DEFAULT_E_MIDPOINT;
vp9_temporal_filter.c 654 base_strength = oxcf->arnr_strength + cpi->twopass.arnr_strength_adjustment;
700 const GF_GROUP *const gf_group = &cpi->twopass.gf_group;
vp9_encoder.h 569 TWO_PASS twopass; member in struct:VP9_COMP
vp9_rdopt.c 2974 TWO_PASS *twopass = &cpi->twopass; local
3001 TWO_PASS *twopass = &cpi->twopass; local
    [all...]
vp9_rd.c 171 const GF_GROUP *const gf_group = &cpi->twopass.gf_group;
vp9_encodeframe.c     [all...]
vp9_bitstream.c     [all...]
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 1104 TWO_PASS *const twopass = &cpi->twopass; local
    [all...]

Completed in 319 milliseconds