Home | History | Annotate | Download | only in encoder

Lines Matching defs:bits_per_frame

2724         double bits_per_frame;
2744 bits_per_frame = av_bits_per_frame;
2751 bits_per_frame = cpi->kf_group_bits / cpi->frames_to_key; // This accounts for how hard the section is...
2753 if (bits_per_frame < av_bits_per_frame) // Dont turn to resampling in easy sections just because they have been assigned a small number of bits
2754 bits_per_frame = av_bits_per_frame;
2757 // bits_per_frame should comply with our minimum
2758 if (bits_per_frame < (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100))
2759 bits_per_frame = (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100);
2762 kf_q = estimate_kf_group_q(cpi, err_per_frame, bits_per_frame, group_iiratio);
2765 projected_bits_perframe = bits_per_frame;
2833 kf_q = estimate_kf_group_q(cpi, err_per_frame * effective_size_ratio, bits_per_frame, group_iiratio);