Home | History | Annotate | Download | only in src

Lines Matching refs:bandWidth

14 audio codecs. AAC-ELD is considered the best-performing full-bandwidth communications codec by
87 contents/description: bandwidth expert
92 #include "bandwidth.h"
202 INT bandwidth = -1;
258 bandwidth = (entryNo==0)
272 bandwidth = (INT)scaleValue(fMult(bwFac_fix, (FIXP_DBL)(endBw-startBw)),q_res) + startBw;
276 bandwidth = -1;
283 return bandwidth;
287 AAC_ENCODER_ERROR FDKaacEnc_DetermineBandWidth(INT* bandWidth,
308 *bandWidth = proposedBandWidth;
313 *bandWidth = bandWidthTableVBR[bitrateMode].bandWidthMono;
321 *bandWidth = bandWidthTableVBR[bitrateMode].bandWidth2AndMoreChan;
332 /* bandwidth limiting */
334 *bandWidth = FDKmin(proposedBandWidth, FDKmin(20000, sampleRate>>1));
336 else { /* search reasonable bandwidth */
358 *bandWidth = GetBandwidthEntry(
364 if (*bandWidth==-1) {
370 *bandWidth = 0;
374 *bandWidth = FDKmin(*bandWidth, sampleRate/2);