Lines Matching refs:pBwTab
203 const BANDWIDTH_TAB *pBwTab = NULL; in GetBandwidthEntry() local
208 pBwTab = bandWidthTable; in GetBandwidthEntry()
219 pBwTab = bandWidthTable_LD_22050; in GetBandwidthEntry()
223 pBwTab = bandWidthTable_LD_24000; in GetBandwidthEntry()
227 pBwTab = bandWidthTable_LD_32000; in GetBandwidthEntry()
231 pBwTab = bandWidthTable_LD_44100; in GetBandwidthEntry()
238 pBwTab = bandWidthTable_LD_48000; in GetBandwidthEntry()
244 pBwTab = NULL; in GetBandwidthEntry()
248 if (pBwTab!=NULL) { in GetBandwidthEntry()
251 if (chanBitRate >= pBwTab[i].chanBitRate && in GetBandwidthEntry()
252 chanBitRate < pBwTab[i+1].chanBitRate) in GetBandwidthEntry()
257 ? pBwTab[i].bandWidthMono in GetBandwidthEntry()
258 : pBwTab[i].bandWidth2AndMoreChan; in GetBandwidthEntry()
264 … INT startBw = (entryNo==0) ? pBwTab[i ].bandWidthMono : pBwTab[i ].bandWidth2AndMoreChan; in GetBandwidthEntry()
265 … INT endBw = (entryNo==0) ? pBwTab[i+1].bandWidthMono : pBwTab[i+1].bandWidth2AndMoreChan; in GetBandwidthEntry()
266 INT startBr = pBwTab[i].chanBitRate; in GetBandwidthEntry()
267 INT endBr = pBwTab[i+1].chanBitRate; in GetBandwidthEntry()