Home | History | Annotate | Download | only in libFLAC

Lines Matching defs:rmax

4041 		FLAC__uint32 rmax;
4052 rmax = 0;
4055 /* OPT: maybe faster: rmax |= r ^ (r>>31) */
4057 rmax |= ~r;
4059 rmax |= r;
4061 /* now we know all residual values are in the range [-rmax-1,rmax] */
4062 raw_bits_per_partition[partition] = rmax? FLAC__bitmath_ilog2(rmax) + 2 : 1;