| 20 | |
| 21 | |
| 22 | class AllKeyframe(IKeyframeSelector[StereoFrame]): |
| 23 | def isKeyframe(self, frame: StereoFrame) -> bool: |
| 24 | return True |
| 25 | |
| 26 | @classmethod |
| 27 | def is_valid_config(cls, config: SimpleNamespace | None) -> None: |
| 28 | cls._enforce_config_spec(config, {}) |
| 29 | |
| 30 | |
| 31 | class UniformKeyframe(IKeyframeSelector[StereoFrame]): |
nothing calls this directly
no outgoing calls
no test coverage detected