(self, config: CodecConfig)
| 101 | |
| 102 | class PNGCodec: |
| 103 | def __init__(self, config: CodecConfig) -> None: |
| 104 | self.config = config |
| 105 | |
| 106 | def encode(self, frame_dir: Path, splats: TensorDict, quant_ctx: QuantizationContext) -> CodecArtifacts: |
| 107 | frame_dir.mkdir(parents=True, exist_ok=True) |
nothing calls this directly
no outgoing calls
no test coverage detected