diff --git a/src/models.cpp b/src/models.cpp index b497c55..b65ad8c 100644 --- a/src/models.cpp +++ b/src/models.cpp @@ -24,7 +24,7 @@ struct Entry { constexpr std::array kRealtime = {{ // Canonical {"lucy-2.1", 30, 1088, 624, true}, - {"lucy-2.5", 30, 1088, 624, true}, + {"lucy-2.5", 30, 1280, 720, true}, {"lucy-vton-2", 30, 1088, 624, true}, {"lucy-vton-3", 30, 1088, 624, true}, {"lucy-restyle-2", 30, 1280, 704, true}, diff --git a/tests/test_models.cpp b/tests/test_models.cpp index d644183..46b4a11 100644 --- a/tests/test_models.cpp +++ b/tests/test_models.cpp @@ -22,8 +22,8 @@ TEST_CASE("realtime() resolves canonical models with correct geometry") { CHECK(lucy25.name == "lucy-2.5"); CHECK(lucy25.urlPath == "/v1/stream"); CHECK(lucy25.fps == 30); - CHECK(lucy25.width == 1088); - CHECK(lucy25.height == 624); + CHECK(lucy25.width == 1280); + CHECK(lucy25.height == 720); } TEST_CASE("realtime() accepts latest and deprecated aliases") {