(codec: str, container: str, extra_args: list | None = None)
| 74 | @pytest.fixture |
| 75 | def synthetic_matrix_generator(tmp_path): |
| 76 | def _generate(codec: str, container: str, extra_args: list | None = None) -> str: |
| 77 | path = str(tmp_path / f"synthetic_{codec}_{container}.{container}") |
| 78 | generate_synthetic_matrix_video(path, codec, container, extra_args) |
| 79 | return path |
| 80 | |
| 81 | return _generate |
nothing calls this directly
no test coverage detected