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
de95a2b2
Commit
de95a2b2
authored
Mar 27, 2013
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Video IO tests turned off for ARM WinRT.
parent
6f68640d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
test_ffmpeg.cpp
modules/highgui/test/test_ffmpeg.cpp
+1
-1
test_precomp.hpp
modules/highgui/test/test_precomp.hpp
+2
-2
No files found.
modules/highgui/test/test_ffmpeg.cpp
View file @
de95a2b2
...
...
@@ -176,7 +176,7 @@ TEST(Highgui_Video, ffmpeg_image) { CV_FFmpegReadImageTest test; test.safe_run()
#endif
#if defined(HAVE_FFMPEG) ||
defined(WIN32) || defined(_WIN32
)
#if defined(HAVE_FFMPEG) ||
((defined(WIN32) || defined(_WIN32)) && !defined(_M_ARM)
)
//////////////////////////////// Parallel VideoWriters and VideoCaptures ////////////////////////////////////
...
...
modules/highgui/test/test_precomp.hpp
View file @
de95a2b2
...
...
@@ -48,7 +48,7 @@
defined(HAVE_AVFOUNDATION) || \
/*defined(HAVE_OPENNI) || too specialized */
\
defined(HAVE_FFMPEG) || \
defined(WIN32)
/* assume that we have ffmpeg
*/
(defined(WIN32) && !defined(_M_ARM))
/* assume that we have ffmpeg on x86 and no on ARM
*/
# define BUILD_WITH_VIDEO_INPUT_SUPPORT 1
#else
...
...
@@ -60,7 +60,7 @@
defined(HAVE_QUICKTIME) || \
defined(HAVE_AVFOUNDATION) || \
defined(HAVE_FFMPEG) || \
defined(WIN32
)
/* assume that we have ffmpeg */
(defined(WIN32) && !defined(_M_ARM)
)
/* assume that we have ffmpeg */
# define BUILD_WITH_VIDEO_OUTPUT_SUPPORT 1
#else
# define BUILD_WITH_VIDEO_OUTPUT_SUPPORT 0
...
...
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