| 61 | } |
| 62 | |
| 63 | void FFmpegEncoderPlugin::InsertIdr() { |
| 64 | GrVideoEncoderPlugin::InsertIdr(); |
| 65 | for (const auto& [monitor_index, video_encoder] : video_encoders_) { |
| 66 | video_encoder->InsertIdr(); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | bool FFmpegEncoderPlugin::IsWorking() { |
| 71 | return !video_encoders_.empty() && plugin_enabled_; |
nothing calls this directly
no outgoing calls
no test coverage detected