Lines Matching refs:bandCount

109     bool isBandConfigValid(const std::vector<T>& cfgs, int bandCount);
137 .preEqStage = {.inUse = true, .bandCount = kBandCount},
138 .postEqStage = {.inUse = true, .bandCount = kBandCount},
139 .mbcStage = {.inUse = true, .bandCount = kBandCount},
169 {.inUse = true, .bandCount = DynamicsProcessingTestHelper::kBandCount},
170 {.inUse = true, .bandCount = 0},
171 {.inUse = true, .bandCount = -1},
172 {.inUse = false, .bandCount = 0},
173 {.inUse = false, .bandCount = -1},
174 {.inUse = false, .bandCount = DynamicsProcessingTestHelper::kBandCount}};
197 bool DynamicsProcessingTestHelper::isBandConfigValid(const std::vector<T>& cfgs, int bandCount) { in isBandConfigValid() argument
201 if (cfg.band < 0 || cfg.band >= bandCount) return false; in isBandConfigValid()
223 mEngineConfigApplied.preEqStage.bandCount); in isParamValid()
227 mEngineConfigApplied.postEqStage.bandCount); in isParamValid()
231 mEngineConfigApplied.mbcStage.bandCount); in isParamValid()
728 int bandCount = cutOffFreqs.size(); in fillEqBandConfig() local
729 cfgs.resize(bandCount); in fillEqBandConfig()
730 for (int i = 0; i < bandCount; i++) { in fillEqBandConfig()
755 mEngineConfigPreset.preEqStage.bandCount = mCfgs.size(); in TEST_P()
768 mEngineConfigPreset.postEqStage.bandCount = mCfgs.size(); in TEST_P()
887 int bandCount = cutOffFreqs.size(); in fillMbcBandConfig() local
888 cfgs.resize(bandCount); in fillMbcBandConfig()
889 for (int i = 0; i < bandCount; i++) { in fillMbcBandConfig()
924 mEngineConfigPreset.mbcStage.bandCount = mCfgs.size(); in TEST_P()