Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:qmax

171 	FLAC__int32 qmax, qmin;
178 qmax = 1 << precision;
179 qmin = -qmax;
180 qmax--;
217 if(q > qmax+1) /* we expect q==qmax+1 occasionally due to rounding */
218 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]);
222 if(q > qmax)
223 q = qmax;
245 if(q > qmax+1) /* we expect q==qmax+1 occasionally due to rounding */
246 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]);
250 if(q > qmax)
251 q = qmax;