| 2106 | } |
| 2107 | |
| 2108 | static BenchmarkResult MakeCpuBaselineResult(const BenchmarkOptions& options, const QImage& overlay_image) { |
| 2109 | BenchmarkResult result; |
| 2110 | result.name = "CPU->CPU"; |
| 2111 | result.decode_backend = "FFmpegReader CPU"; |
| 2112 | result.composite_backend = "QPainter CPU"; |
| 2113 | result.stats = RunCpuBenchmark(options, overlay_image); |
| 2114 | return result; |
| 2115 | } |
| 2116 | |
| 2117 | static BenchmarkResult MakeCpuCompositeResult(const BenchmarkOptions& options, const QImage& overlay_image, |
| 2118 | const std::string& name, DecodeKind decode_kind, |
nothing calls this directly
no test coverage detected