Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
53ad291e
Commit
53ad291e
authored
Sep 18, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12572 from alalek:ffmpeg_update_master
parents
145d3ba9
aa1c86f9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
ffmpeg.cmake
3rdparty/ffmpeg/ffmpeg.cmake
+6
-6
ts_ext.hpp
modules/ts/include/opencv2/ts/ts_ext.hpp
+4
-1
test_ffmpeg.cpp
modules/videoio/test/test_ffmpeg.cpp
+2
-0
No files found.
3rdparty/ffmpeg/ffmpeg.cmake
View file @
53ad291e
# Binaries branch name: ffmpeg/master_20180
220
# Binaries were created for OpenCV:
9819ebc0954c2df62943ebbd5936d325e5dc89e1
ocv_update
(
FFMPEG_BINARIES_COMMIT
"
0a0e88972a7ea97708378d0488a65f83e7cc5e69
"
)
ocv_update
(
FFMPEG_FILE_HASH_BIN32
"
b8120c07962d591e2e9071a1bf566fd0
"
)
ocv_update
(
FFMPEG_FILE_HASH_BIN64
"d
c9c50e7b05482acc25d6ce0ac61bf1d
"
)
ocv_update
(
FFMPEG_FILE_HASH_CMAKE
"
3b90f67f4b429e77d3da36698cef700c
"
)
# Binaries branch name: ffmpeg/master_20180
918
# Binaries were created for OpenCV:
e628fd7bce2b5d64c36b5bdc55a37c0ae78bc907
ocv_update
(
FFMPEG_BINARIES_COMMIT
"
c88df798e9dc3d63840f913714563a730245464a
"
)
ocv_update
(
FFMPEG_FILE_HASH_BIN32
"
48c95ce37d5aa6b15b3ad116e331ebc1
"
)
ocv_update
(
FFMPEG_FILE_HASH_BIN64
"d
33eca57ae1cfd6287b975b98125f7a3
"
)
ocv_update
(
FFMPEG_FILE_HASH_CMAKE
"
5fd49e1b84e9f402ca155e27c92d2ce9
"
)
function
(
download_win_ffmpeg script_var
)
set
(
${
script_var
}
""
PARENT_SCOPE
)
...
...
modules/ts/include/opencv2/ts/ts_ext.hpp
View file @
53ad291e
...
...
@@ -24,10 +24,13 @@ extern int testThreads;
#define CV__TEST_INIT \
CV__TEST_NAMESPACE_CHECK \
fflush(stdout); fflush(stderr); \
cv::ipp::setIppStatus(0); \
cv::theRNG().state = cvtest::param_seed; \
cv::setNumThreads(cvtest::testThreads);
#define CV__TEST_CLEANUP ::cvtest::checkIppStatus();
#define CV__TEST_CLEANUP \
fflush(stdout); fflush(stderr); \
::cvtest::checkIppStatus();
#define CV__TEST_BODY_IMPL(name) \
{ \
CV__TRACE_APP_FUNCTION_NAME(name); \
...
...
modules/videoio/test/test_ffmpeg.cpp
View file @
53ad291e
...
...
@@ -164,6 +164,8 @@ public:
}
else
{
printf
(
"Case: '%s' (frame size %dx%d fps=%g). FileSize=%lld bytes
\n
"
,
s
.
c_str
(),
frame_s
.
width
,
frame_s
.
height
,
fps
,
(
long
long
int
)
sz
);
if
(
sz
<
8192
)
{
fprintf
(
stderr
,
"ERROR: File name: %s is very small (data write problems?)
\n
"
,
filename
.
c_str
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment