| 488 | } |
| 489 | |
| 490 | GrVideoEncoderPlugin* EncoderThread::GetEncoderPluginForMonitor(const std::string& monitor_name) { |
| 491 | for (const auto& [name, plugin] : encoder_plugins_) { |
| 492 | if (name == monitor_name) { |
| 493 | return plugin; |
| 494 | } |
| 495 | } |
| 496 | return nullptr; |
| 497 | } |
| 498 | |
| 499 | void EncoderThread::PrintEncoderConfig(const tc::EncoderConfig& config) { |
| 500 | LOGI("---------------------------------------------------"); |
nothing calls this directly
no outgoing calls
no test coverage detected