Home | History | Annotate | Download | only in libFLAC

Lines Matching defs:rmax

3869 		FLAC__uint32 rmax;
3880 rmax = 0;
3883 /* OPT: maybe faster: rmax |= r ^ (r>>31) */
3885 rmax |= ~r;
3887 rmax |= r;
3889 /* now we know all residual values are in the range [-rmax-1,rmax] */
3890 raw_bits_per_partition[partition] = rmax? FLAC__bitmath_ilog2(rmax) + 2 : 1;