Lines Matching defs:bits
34 #define FRAC_BITS 15 /* fractional bits for sb_samples and dct */
35 #define WFRAC_BITS 14 /* fractional bits for window */
54 int frame_size; /* frame size, in bits, without padding */
74 unsigned short total_quant_bits[17]; /* total number of bits per allocation group */
143 ff_dlog(avctx, "%d kb/s, %d Hz, frame_size=%d bits, table=%d, padincr=%x\n",
507 /* Try to maximize the smr while using a number of bits inferior to
572 /* nothing was coded for this band: add the necessary bits */
683 int qindex, steps, m, sample, bits;
703 /* normalize to P bits */
719 bits = ff_mpa_quant_bits[qindex];
720 if (bits < 0) {
721 /* group the 3 values to save bits */
722 put_bits(p, -bits,
725 put_bits(p, bits, q[0]);
726 put_bits(p, bits, q[1]);
727 put_bits(p, bits, q[2]);