Skip to content

Commit b6670f3

Browse files
committed
ffmpeg/4.x: update FFmpeg wrapper 2021.03
- FFmpeg 4.3.2
1 parent d2ac304 commit b6670f3

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

3rdparty/ffmpeg/ffmpeg.cmake

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Binaries branch name: ffmpeg/master_20200908
2-
# Binaries were created for OpenCV: f445b826d084188077a5e9d204c4c33d1589f380
3-
ocv_update(FFMPEG_BINARIES_COMMIT "6152e132572dfdaa32887eabeb7199bef49b14dc")
4-
ocv_update(FFMPEG_FILE_HASH_BIN32 "37e2dadf776631acc8856e281f29cf42")
5-
ocv_update(FFMPEG_FILE_HASH_BIN64 "cf5dba83edf8619f57ccff4edb989c62")
1+
# Binaries branch name: ffmpeg/master_20210303
2+
# Binaries were created for OpenCV: 7ac6abe02a33bef445a5b77214ad31964e2c5cc1
3+
ocv_update(FFMPEG_BINARIES_COMMIT "629590c3ba09fb0c8eaa9ab858ff13d3a84ca1aa")
4+
ocv_update(FFMPEG_FILE_HASH_BIN32 "638065d5a0dab8a828879942375dcac4")
5+
ocv_update(FFMPEG_FILE_HASH_BIN64 "7f10ae2e6a080ba3714f7a38ee03ae15")
66
ocv_update(FFMPEG_FILE_HASH_CMAKE "f8e65dbe4a3b4eedc0d2997e07c3f3fd")
77

88
function(download_win_ffmpeg script_var)

modules/videoio/test/test_video_io.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -721,10 +721,6 @@ TEST_P(videocapture_acceleration, read)
721721
VideoAccelerationType actual_va = static_cast<VideoAccelerationType>(static_cast<int>(hw_reader.get(CAP_PROP_HW_ACCELERATION)));
722722
if (va_type != VIDEO_ACCELERATION_ANY && va_type != VIDEO_ACCELERATION_NONE)
723723
{
724-
#ifdef _WIN32 // FIXIT FFmpeg wrapper upgrade is required
725-
if (actual_va == static_cast<VideoAccelerationType>(0))
726-
throw SkipTestException(backend_name + " VideoCapture on " + filename + " not supported with HW acceleration (legacy FFmpeg wrapper), skipping");
727-
#endif
728724
ASSERT_EQ((int)actual_va, (int)va_type) << "actual_va=" << actual_va << ", va_type=" << va_type;
729725
}
730726
std::cout << "VideoCapture " << backend_name << ":" << actual_va << std::endl << std::flush;
@@ -880,10 +876,6 @@ TEST_P(videowriter_acceleration, write)
880876
actual_va = static_cast<VideoAccelerationType>(static_cast<int>(hw_writer.get(VIDEOWRITER_PROP_HW_ACCELERATION)));
881877
if (va_type != VIDEO_ACCELERATION_ANY && va_type != VIDEO_ACCELERATION_NONE)
882878
{
883-
#ifdef _WIN32 // FIXIT FFmpeg wrapper upgrade is required
884-
if (actual_va == static_cast<VideoAccelerationType>(-1))
885-
throw SkipTestException(backend_name + " VideoWriter on " + filename + " not supported with HW acceleration (legacy FFmpeg wrapper), skipping");
886-
#endif
887879
ASSERT_EQ((int)actual_va, (int)va_type) << "actual_va=" << actual_va << ", va_type=" << va_type;
888880
}
889881
std::cout << "VideoWriter " << backend_name << ":" << actual_va << std::endl << std::flush;

0 commit comments

Comments
 (0)