Home | History | Annotate | Download | only in encoder

Lines Matching refs:gf_bits

2012     int gf_bits;
2056 gf_bits = (int)((double)Boost *
2075 if (gf_bits > alt_gf_bits) {
2076 gf_bits = alt_gf_bits;
2088 if (alt_gf_bits > gf_bits) {
2089 gf_bits = alt_gf_bits;
2095 if (cpi->twopass.gf_bits > (int)(cpi->buffer_level >> 1)) {
2096 cpi->twopass.gf_bits = (int)(cpi->buffer_level >> 1);
2100 /* Dont allow a negative value for gf_bits */
2101 if (gf_bits < 0) gf_bits = 0;
2104 gf_bits += cpi->min_frame_bandwidth;
2107 cpi->twopass.gf_bits = gf_bits;
2112 cpi->per_frame_bandwidth = gf_bits;
2136 cpi->twopass.gf_bits - cpi->min_frame_bandwidth;