Lines Matching refs:pBwTab
167 const BANDWIDTH_TAB *pBwTab = NULL; in GetBandwidthEntry() local
173 pBwTab = bandWidthTable; in GetBandwidthEntry()
188 pBwTab = bandWidthTable_LD_22050; in GetBandwidthEntry()
192 pBwTab = bandWidthTable_LD_24000; in GetBandwidthEntry()
196 pBwTab = bandWidthTable_LD_32000; in GetBandwidthEntry()
200 pBwTab = bandWidthTable_LD_44100; in GetBandwidthEntry()
207 pBwTab = bandWidthTable_LD_48000; in GetBandwidthEntry()
213 pBwTab = NULL; in GetBandwidthEntry()
217 if (pBwTab != NULL) { in GetBandwidthEntry()
220 if (chanBitRate >= pBwTab[i].chanBitRate && in GetBandwidthEntry()
221 chanBitRate < pBwTab[i + 1].chanBitRate) { in GetBandwidthEntry()
225 bandwidth = (entryNo == 0) ? pBwTab[i].bandWidthMono in GetBandwidthEntry()
226 : pBwTab[i].bandWidth2AndMoreChan; in GetBandwidthEntry()
235 INT startBw = (entryNo == 0) ? pBwTab[i].bandWidthMono in GetBandwidthEntry()
236 : pBwTab[i].bandWidth2AndMoreChan; in GetBandwidthEntry()
237 INT endBw = (entryNo == 0) ? pBwTab[i + 1].bandWidthMono in GetBandwidthEntry()
238 : pBwTab[i + 1].bandWidth2AndMoreChan; in GetBandwidthEntry()
239 INT startBr = pBwTab[i].chanBitRate; in GetBandwidthEntry()
240 INT endBr = pBwTab[i + 1].chanBitRate; in GetBandwidthEntry()