Home | History | Annotate | Download | only in encoder

Lines Matching defs:gf_bits

2152         int gf_bits;
2199 gf_bits = (int)((double)Boost *
2220 if (gf_bits > alt_gf_bits)
2222 gf_bits = alt_gf_bits;
2236 if (alt_gf_bits > gf_bits)
2238 gf_bits = alt_gf_bits;
2245 if (cpi->twopass.gf_bits > (int)(cpi->buffer_level >> 1))
2246 cpi->twopass.gf_bits = (int)(cpi->buffer_level >> 1);
2249 /* Dont allow a negative value for gf_bits */
2250 if (gf_bits < 0)
2251 gf_bits = 0;
2254 gf_bits += cpi->min_frame_bandwidth;
2258 cpi->twopass.gf_bits = gf_bits;
2263 cpi->per_frame_bandwidth = gf_bits;
2286 cpi->twopass.gf_group_bits -= cpi->twopass.gf_bits - cpi->min_frame_bandwidth;