Lines Matching refs:bandCount
364 if (!validateEqBandConfig(cfg, mChannelCount, stage.bandCount, channelConfig)) { in setEqBandCfgs()
369 targetCfgs[cfg.channel * stage.bandCount + cfg.band] = cfg; in setEqBandCfgs()
392 int bandCount = mEngineSettings.mbcStage.bandCount; in setMbcBandCfgs() local
393 std::vector<bool> filled(mChannelCount * bandCount, false); in setMbcBandCfgs()
401 if (!validateMbcBandConfig(it, mChannelCount, mEngineSettings.mbcStage.bandCount, in setMbcBandCfgs()
407 mMbcChBands[it.channel * bandCount + it.band] = it; in setMbcBandCfgs()
456 if (mPreEqChBands.size() != (size_t)(mChannelCount * mEngineSettings.preEqStage.bandCount)) { in resizeBands()
457 mPreEqChBands.resize(mChannelCount * mEngineSettings.preEqStage.bandCount, in resizeBands()
460 if (mPostEqChBands.size() != (size_t)(mChannelCount * mEngineSettings.postEqStage.bandCount)) { in resizeBands()
461 mPostEqChBands.resize(mChannelCount * mEngineSettings.postEqStage.bandCount, in resizeBands()
464 if (mMbcChBands.size() != (size_t)(mChannelCount * mEngineSettings.mbcStage.bandCount)) { in resizeBands()
465 mMbcChBands.resize(mChannelCount * mEngineSettings.mbcStage.bandCount, in resizeBands()
489 return !enablement.inUse || (enablement.inUse && enablement.bandCount > 0); in validateStageEnablement()