Home
last modified time | relevance | path

Searched refs:this_frame_stats (Results 1 – 8 of 8) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dfirstpass.c753 FIRSTPASS_STATS *this_frame_stats = twopass->stats_buf_ctx->stats_in_end; in update_firstpass_stats() local
814 *this_frame_stats = fps; in update_firstpass_stats()
815 output_stats(this_frame_stats, cpi->output_pkt_list); in update_firstpass_stats()
1025 FIRSTPASS_STATS *this_frame_stats = twopass->stats_buf_ctx->stats_in_end; in av1_first_pass() local
1033 (this_frame_stats->pcnt_inter > 0.20) && in av1_first_pass()
1034 ((this_frame_stats->intra_error / in av1_first_pass()
1035 DOUBLE_DIVIDE_CHECK(this_frame_stats->coded_error)) > 2.0))) { in av1_first_pass()
Dencodeframe.c2443 const FIRSTPASS_STATS *const this_frame_stats = read_one_frame_stats( in active_h_edge() local
2445 if (this_frame_stats == NULL) return AOM_CODEC_ERROR; in active_h_edge()
2449 top_edge += (int)(this_frame_stats->inactive_zone_rows * 4); in active_h_edge()
2451 bottom_edge -= (int)(this_frame_stats->inactive_zone_rows * 4); in active_h_edge()
2473 const FIRSTPASS_STATS *const this_frame_stats = read_one_frame_stats( in active_v_edge() local
2475 if (this_frame_stats == NULL) return AOM_CODEC_ERROR; in active_v_edge()
2479 left_edge += (int)(this_frame_stats->inactive_zone_cols * 4); in active_v_edge()
2481 right_edge -= (int)(this_frame_stats->inactive_zone_cols * 4); in active_v_edge()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.h178 FIRSTPASS_STATS this_frame_stats; member
Dvp9_firstpass.c1425 twopass->this_frame_stats = fps; in vp9_first_pass()
1426 output_stats(&twopass->this_frame_stats); in vp9_first_pass()
1440 (twopass->this_frame_stats.pcnt_inter > 0.20) && in vp9_first_pass()
1441 ((twopass->this_frame_stats.intra_error / in vp9_first_pass()
1442 DOUBLE_DIVIDE_CHECK(twopass->this_frame_stats.coded_error)) > 2.0))) { in vp9_first_pass()
3690 return twopass->this_frame_stats; in vp9_get_frame_stats()
Dvp9_rdopt.c3233 ((cpi->twopass.this_frame_stats.inactive_zone_rows > 0) || in vp9_internal_image_edge()
3234 (cpi->twopass.this_frame_stats.inactive_zone_cols > 0)); in vp9_internal_image_edge()
3251 top_edge += (int)(twopass->this_frame_stats.inactive_zone_rows * 2); in vp9_active_h_edge()
3253 bottom_edge -= (int)(twopass->this_frame_stats.inactive_zone_rows * 2); in vp9_active_h_edge()
3278 left_edge += (int)(twopass->this_frame_stats.inactive_zone_cols * 2); in vp9_active_v_edge()
3280 right_edge -= (int)(twopass->this_frame_stats.inactive_zone_cols * 2); in vp9_active_v_edge()
/external/libvpx/libvpx/vp8/encoder/
Donyx_int.h573 FIRSTPASS_STATS this_frame_stats; member
Dfirstpass.c795 memcpy(&cpi->twopass.this_frame_stats, &fps, sizeof(FIRSTPASS_STATS)); in vp8_first_pass()
796 output_stats(cpi->output_pkt_list, &cpi->twopass.this_frame_stats); in vp8_first_pass()
804 (cpi->twopass.this_frame_stats.pcnt_inter > 0.20) && in vp8_first_pass()
805 ((cpi->twopass.this_frame_stats.intra_error / in vp8_first_pass()
806 DOUBLE_DIVIDE_CHECK(cpi->twopass.this_frame_stats.coded_error)) > in vp8_first_pass()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c1235 fps_pkt = get_first_pass_stats_pkt(&cpi->twopass.this_frame_stats); in encoder_encode()