Home | History | Annotate | Download | only in src

Lines Matching defs: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;
256 bandwidth = (entryNo==0)
270 bandwidth = (INT)scaleValue(fMult(bwFac_fix, (FIXP_DBL)(endBw-startBw)),q_res) + startBw;
274 bandwidth = -1;
281 return bandwidth;
285 AAC_ENCODER_ERROR FDKaacEnc_DetermineBandWidth(INT* bandWidth,
306 *bandWidth = proposedBandWidth;
311 *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 */
360 *bandWidth = GetBandwidthEntry(
366 if (*bandWidth==-1) {
372 *bandWidth = 0;
376 *bandWidth = FDKmin(*bandWidth, sampleRate/2);