Home | History | Annotate | Download | only in encoder

Lines Matching defs:max_bits

337   int64_t max_bits =
341 if (max_bits < 0)
342 max_bits = 0;
343 else if (max_bits > cpi->rc.max_frame_bandwidth)
344 max_bits = cpi->rc.max_frame_bandwidth;
346 return (int)max_bits;
1427 const int max_bits = frame_max_bits(cpi); // Max bits for a single frame.
1658 if (twopass->gf_group_bits > (int64_t)max_bits * rc->baseline_gf_interval)
1659 twopass->gf_group_bits = (int64_t)max_bits * rc->baseline_gf_interval;
1795 const int max_bits = frame_max_bits(cpi); // Max for a single frame.
1809 // Clip target size to 0 - max_bits (or cpi->twopass.gf_group_bits) at
1812 MIN(max_bits, (int)cpi->twopass.gf_group_bits));
2019 const int max_bits = frame_max_bits(cpi);
2030 max_grp_bits = (int64_t)max_bits * (int64_t)rc->frames_to_key;