Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:qmax

160 	FLAC__int32 qmax, qmin;
167 qmax = 1 << precision;
168 qmin = -qmax;
169 qmax--;
212 if(q > qmax+1) /* we expect q==qmax+1 occasionally due to rounding */
213 fprintf(stderr,"FLAC__lpc_quantize_coefficients: quantizer overflow: q>qmax %d>%d shift=%d cmax=%f precision=%u lpc[%u]=%f\n",q,qmax,*shift,cmax,precision+1,i,lp_coeff[i]);
217 if(q > qmax)
218 q = qmax;
247 if(q > qmax+1) /* we expect q==qmax+1 occasionally due to rounding */
248 fprintf(stderr,"FLAC__lpc_quantize_coefficients: quantizer overflow: q>qmax %d>%d shift=%d cmax=%f precision=%u lpc[%u]=%f\n",q,qmax,*shift,cmax,precision+1,i,lp_coeff[i]);
252 if(q > qmax)
253 q = qmax;