Home
last modified time | relevance | path

Searched refs:FIRSTPASS_STATS (Results 1 – 14 of 14) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dfirstpass.h96 } FIRSTPASS_STATS; typedef
131 FIRSTPASS_STATS total_stats;
132 FIRSTPASS_STATS this_frame_stats;
133 const FIRSTPASS_STATS *stats_in;
134 const FIRSTPASS_STATS *stats_in_start;
135 const FIRSTPASS_STATS *stats_in_end;
136 FIRSTPASS_STATS total_left_stats;
179 void av1_twopass_zero_stats(FIRSTPASS_STATS *section);
Dpass2_strategy.c33 const FIRSTPASS_STATS *this_frame) { in calculate_active_area()
48 const FIRSTPASS_STATS *this_frame) { in calculate_modified_err()
49 const FIRSTPASS_STATS *const stats = &twopass->total_stats; in calculate_modified_err()
71 static void reset_fpf_position(TWO_PASS *p, const FIRSTPASS_STATS *position) { in reset_fpf_position()
75 static int input_stats(TWO_PASS *p, FIRSTPASS_STATS *fps) { in input_stats()
84 static const FIRSTPASS_STATS *read_frame_stats(const TWO_PASS *p, int offset) { in read_frame_stats()
93 static void subtract_stats(FIRSTPASS_STATS *section, in subtract_stats()
94 const FIRSTPASS_STATS *frame) { in subtract_stats()
249 const FIRSTPASS_STATS *frame) { in get_sr_decay_rate()
278 const FIRSTPASS_STATS *frame) { in get_zero_motion_factor()
[all …]
Dfirstpass.c56 static void output_stats(FIRSTPASS_STATS *stats, in output_stats()
61 pkt.data.twopass_stats.sz = sizeof(FIRSTPASS_STATS); in output_stats()
86 void av1_twopass_zero_stats(FIRSTPASS_STATS *section) { in av1_twopass_zero_stats()
112 static void accumulate_stats(FIRSTPASS_STATS *section, in accumulate_stats()
113 const FIRSTPASS_STATS *frame) { in accumulate_stats()
747 FIRSTPASS_STATS fps; in av1_first_pass()
Dencoder.c2687 const size_t packet_sz = sizeof(FIRSTPASS_STATS); in av1_create_compressor()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.h106 } FIRSTPASS_STATS; typedef
149 FIRSTPASS_STATS total_stats;
150 FIRSTPASS_STATS this_frame_stats;
151 const FIRSTPASS_STATS *stats_in;
152 const FIRSTPASS_STATS *stats_in_start;
153 const FIRSTPASS_STATS *stats_in_end;
154 FIRSTPASS_STATS total_left_stats;
Dvp9_firstpass.c66 static void reset_fpf_position(TWO_PASS *p, const FIRSTPASS_STATS *position) { in reset_fpf_position()
71 static const FIRSTPASS_STATS *read_frame_stats(const TWO_PASS *p, int offset) { in read_frame_stats()
80 static int input_stats(TWO_PASS *p, FIRSTPASS_STATS *fps) { in input_stats()
88 static void output_stats(FIRSTPASS_STATS *stats, in output_stats()
93 pkt.data.twopass_stats.sz = sizeof(FIRSTPASS_STATS); in output_stats()
132 static void zero_stats(FIRSTPASS_STATS *section) { in zero_stats()
161 static void accumulate_stats(FIRSTPASS_STATS *section, in accumulate_stats()
162 const FIRSTPASS_STATS *frame) { in accumulate_stats()
191 static void subtract_stats(FIRSTPASS_STATS *section, in subtract_stats()
192 const FIRSTPASS_STATS *frame) { in subtract_stats()
[all …]
Dvp9_encoder.c2301 const size_t packet_sz = sizeof(FIRSTPASS_STATS); in vp9_create_compressor()
2306 FIRSTPASS_STATS *const stats = oxcf->two_pass_stats_in.buf; in vp9_create_compressor()
2307 FIRSTPASS_STATS *stats_copy[VPX_SS_MAX_LAYERS] = { 0 }; in vp9_create_compressor()
2311 FIRSTPASS_STATS *const last_packet_for_layer = in vp9_create_compressor()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c75 static void find_next_key_frame(VP8_COMP *cpi, FIRSTPASS_STATS *this_frame);
80 static void reset_fpf_position(VP8_COMP *cpi, FIRSTPASS_STATS *Position) { in reset_fpf_position()
84 static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) { in lookup_next_frame_stats()
92 static int read_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *frame_stats, in read_frame_stats()
94 FIRSTPASS_STATS *fps_ptr = cpi->twopass.stats_in; in read_frame_stats()
107 static int input_stats(VP8_COMP *cpi, FIRSTPASS_STATS *fps) { in input_stats()
112 (void *)((char *)cpi->twopass.stats_in + sizeof(FIRSTPASS_STATS)); in input_stats()
118 FIRSTPASS_STATS *stats) { in output_stats()
123 pkt.data.twopass_stats.sz = sizeof(FIRSTPASS_STATS); in output_stats()
148 static void zero_stats(FIRSTPASS_STATS *section) { in zero_stats()
[all …]
Donyx_int.h111 } FIRSTPASS_STATS; typedef
567 FIRSTPASS_STATS total_stats;
568 FIRSTPASS_STATS this_frame_stats;
569 FIRSTPASS_STATS *stats_in, *stats_in_end, *stats_in_start;
570 FIRSTPASS_STATS total_left_stats;
Donyx_if.c1974 size_t packet_sz = sizeof(FIRSTPASS_STATS); in vp8_create_compressor()
/external/libvpx/libvpx/test/
Dvp9_ethread_test.cc118 FIRSTPASS_STATS *stats1 = reinterpret_cast<FIRSTPASS_STATS *>(fp_stats->buf); in compare_fp_stats()
119 int nframes_ = (int)(fp_stats->sz / sizeof(FIRSTPASS_STATS)); in compare_fp_stats()
120 FIRSTPASS_STATS *stats2 = stats1 + nframes_ / 2; in compare_fp_stats()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c272 const size_t packet_sz = sizeof(FIRSTPASS_STATS); in validate_config()
274 const FIRSTPASS_STATS *stats; in validate_config()
302 stats = (const FIRSTPASS_STATS *)cfg->rc_twopass_stats_in.buf + in validate_config()
316 (const FIRSTPASS_STATS *)cfg->rc_twopass_stats_in.buf + n_packets - 1; in validate_config()
1090 FIRSTPASS_STATS *stats = &twopass->total_stats; in encoder_encode()
/external/libaom/libaom/av1/
Dav1_cx_iface.c404 const size_t packet_sz = sizeof(FIRSTPASS_STATS); in validate_config()
406 const FIRSTPASS_STATS *stats; in validate_config()
418 (const FIRSTPASS_STATS *)cfg->rc_twopass_stats_in.buf + n_packets - 1; in validate_config()
823 const size_t packet_sz = sizeof(FIRSTPASS_STATS); in set_encoder_config()
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c208 size_t packet_sz = sizeof(FIRSTPASS_STATS); in validate_config()
210 FIRSTPASS_STATS *stats; in validate_config()