File tree Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 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 " )
6
6
ocv_update (FFMPEG_FILE_HASH_CMAKE "f8e65dbe4a3b4eedc0d2997e07c3f3fd" )
7
7
8
8
function (download_win_ffmpeg script_var )
Original file line number Diff line number Diff line change @@ -721,10 +721,6 @@ TEST_P(videocapture_acceleration, read)
721
721
VideoAccelerationType actual_va = static_cast <VideoAccelerationType>(static_cast <int >(hw_reader.get (CAP_PROP_HW_ACCELERATION)));
722
722
if (va_type != VIDEO_ACCELERATION_ANY && va_type != VIDEO_ACCELERATION_NONE)
723
723
{
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
728
724
ASSERT_EQ ((int )actual_va, (int )va_type) << " actual_va=" << actual_va << " , va_type=" << va_type;
729
725
}
730
726
std::cout << " VideoCapture " << backend_name << " :" << actual_va << std::endl << std::flush;
@@ -880,10 +876,6 @@ TEST_P(videowriter_acceleration, write)
880
876
actual_va = static_cast <VideoAccelerationType>(static_cast <int >(hw_writer.get (VIDEOWRITER_PROP_HW_ACCELERATION)));
881
877
if (va_type != VIDEO_ACCELERATION_ANY && va_type != VIDEO_ACCELERATION_NONE)
882
878
{
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
887
879
ASSERT_EQ ((int )actual_va, (int )va_type) << " actual_va=" << actual_va << " , va_type=" << va_type;
888
880
}
889
881
std::cout << " VideoWriter " << backend_name << " :" << actual_va << std::endl << std::flush;
You can’t perform that action at this time.
0 commit comments