MCPcopy Create free account
hub / github.com/RGAA-Software/GoDesk / VisitStreamPlugins

Method VisitStreamPlugins

src/render/plugins/plugin_manager.cpp:344–350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342 }
343
344 void PluginManager::VisitStreamPlugins(const std::function<void(GrStreamPlugin *)>&& visitor) {
345 for (const auto& [k, plugin] : plugins_) {
346 if (plugin->GetPluginType() == GrPluginType::kStream) {
347 visitor((GrStreamPlugin *) plugin);
348 }
349 }
350 }
351
352 void PluginManager::VisitUtilPlugins(const std::function<void(GrPluginInterface *)>&& visitor) {
353 for (const auto& [k, plugin] : plugins_) {

Callers 3

InitAudioCaptureMethod · 0.80
EncodeMethod · 0.80

Calls 1

GetPluginTypeMethod · 0.45

Tested by

no test coverage detected