Home | History | Annotate | Download | only in src

Lines Matching defs:bandwidth

15 full-bandwidth communications codec by independent studies and is widely
99 Description: bandwidth expert
104 #include "bandwidth.h"
166 INT bandwidth = -1;
225 bandwidth = (entryNo == 0) ? pBwTab[i].bandWidthMono
244 bandwidth =
250 bandwidth = -1;
257 return bandwidth;
264 const CHANNEL_MODE encoderMode, INT *const bandWidth) {
276 *bandWidth = proposedBandWidth;
281 *bandWidth = bandWidthTableVBR[bitrateMode].bandWidthMono;
294 *bandWidth = bandWidthTableVBR[bitrateMode].bandWidth2AndMoreChan;
305 /* bandwidth limiting */
307 *bandWidth = fMin(proposedBandWidth, fMin(20000, sampleRate >> 1));
308 } else { /* search reasonable bandwidth */
314 entryNo = 0; /* use mono bandwidth settings */
328 entryNo = 1; /* use stereo bandwidth settings */
335 *bandWidth =
338 if (*bandWidth == -1) {
344 *bandWidth = 16000;
353 *bandWidth = 0;
357 *bandWidth = fMin(*bandWidth, sampleRate / 2);