1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Disable FFmpeg tests that need FFmpeg wrapper rebuild on Windows.

This commit is contained in:
Alexander Smorkalov
2026-04-17 10:56:46 +03:00
parent 166c235603
commit 6aba6fda2d
+3
View File
@@ -845,6 +845,8 @@ TEST(videoio_ffmpeg, create_with_property_badarg)
EXPECT_FALSE(cap.isOpened());
}
// requires FFmpeg wrapper rebuild on Windows
#ifndef _WIN32
TEST(videoio_ffmpeg, open_with_format_cv8uc3)
{
if (!videoio_registry::hasBackend(CAP_FFMPEG))
@@ -860,6 +862,7 @@ TEST(videoio_ffmpeg, open_with_format_cv8uc3)
ASSERT_TRUE(cap.read(frame));
EXPECT_EQ(frame.channels(), 3);
}
#endif
// related issue: https://github.com/opencv/opencv/issues/16821
TEST(videoio_ffmpeg, DISABLED_open_from_web)