Lines Matching refs:effectsConfig
270 std::shared_ptr<const effectsConfig::Processings> EffectsFactoryHalAidl::getProcessings() const { in getProcessings()
273 [](const auto& desc) -> std::shared_ptr<const effectsConfig::Effect> { in getProcessings()
274 effectsConfig::Effect effect = {.name = desc.common.name, .isProxy = false}; in getProcessings()
278 static_cast<effectsConfig::EffectImpl&>(effect).uuid = uuid.value(); in getProcessings()
279 return std::make_shared<const effectsConfig::Effect>(effect); in getProcessings()
286 [&](const auto& aidlProcess, std::vector<effectsConfig::InputStream>& preprocess, in getProcessings()
287 std::vector<effectsConfig::OutputStream>& postprocess) { in getProcessings()
298 std::vector<std::shared_ptr<const effectsConfig::Effect>> effects; in getProcessings()
301 effectsConfig::OutputStream stream = {.type = type.value(), in getProcessings()
313 std::vector<std::shared_ptr<const effectsConfig::Effect>> effects; in getProcessings()
316 effectsConfig::InputStream stream = {.type = type.value(), in getProcessings()
322 static std::shared_ptr<const effectsConfig::Processings> processings( in getProcessings()
323 [&]() -> std::shared_ptr<const effectsConfig::Processings> { in getProcessings()
324 std::vector<effectsConfig::InputStream> preprocess; in getProcessings()
325 std::vector<effectsConfig::OutputStream> postprocess; in getProcessings()
334 return std::make_shared<const effectsConfig::Processings>( in getProcessings()
335 effectsConfig::Processings({.preprocess = std::move(preprocess), in getProcessings()