Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mediaforce/encoding/bakeoff.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def _engine_candidate(
category="scene-aware-candidate",
maturity="research-candidate",
required_tools=("Auto-Boost-Essential script", "SVT-AV1-Essential or compatible SVT-AV1"),
metric_support=("script-defined"),
metric_support=("script-defined",),
command=tuple(command),
command_status="research-template-needs-script-validation",
sources=("https://github.com/nekotrix/auto-boost-algorithm/tree/main/Auto-Boost-Essential",),
Expand Down
2 changes: 2 additions & 0 deletions tests/test_bakeoff.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ def test_build_bakeoff_plan_uses_size_first_defaults_and_candidates(self) -> Non
self.assertIn("ssimulacra2", av1an["command"])
self.assertEqual(av1an["command_status"], "template-needs-host-validation")
self.assertIn("https://rust-av.github.io/Av1an/Features/TargetQuality", av1an["sources"])
auto_boost = item["engines"][3]
self.assertEqual(auto_boost["metric_support"], ["script-defined"])

def test_build_bakeoff_plan_can_limit_engines(self) -> None:
config = load_config(Path("config/defaults.toml"))
Expand Down