| 96 | |
| 97 | @dataclass |
| 98 | class PCCompressionConfig(CompressionConfig): |
| 99 | pcc_config_filename: str = "encoder_r05.cfg" |
| 100 | |
| 101 | def to_dict(self) -> Dict[str, Any]: |
| 102 | return { |
| 103 | "pcc_config_filename": self.pcc_config_filename |
| 104 | } |
| 105 | |
| 106 | @dataclass |
| 107 | class VideoCompressionConfig(CompressionConfig): |
no outgoing calls
no test coverage detected