Home | History | Annotate | Download | only in examples

Lines Matching defs:stats

73                            vpx_fixed_buf_t *stats) {
80 die_codec(ctx, "Failed to get frame stats.");
88 stats->buf = realloc(stats->buf, stats->sz + pkt_size);
89 memcpy((uint8_t *)stats->buf + stats->sz, pkt_buf, pkt_size);
90 stats->sz += pkt_size;
135 vpx_fixed_buf_t stats = {NULL, 0};
144 &stats);
149 VPX_DL_GOOD_QUALITY, &stats)) {}
155 return stats;
206 vpx_fixed_buf_t stats;
252 stats = pass0(&raw, infile, encoder, &cfg);
257 cfg.rc_twopass_stats_in = stats;
259 free(stats.buf);