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
22e352d9
Commit
22e352d9
authored
Oct 22, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #76 vpisarev/test_fixes_1
parents
781d8982
fbe0d696
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
test_framecount.cpp
modules/highgui/test/test_framecount.cpp
+1
-1
test_positioning.cpp
modules/highgui/test/test_positioning.cpp
+2
-1
test_video_pos.cpp
modules/highgui/test/test_video_pos.cpp
+1
-1
imgwarp.cpp
modules/imgproc/src/imgwarp.cpp
+2
-1
No files found.
modules/highgui/test/test_framecount.cpp
View file @
22e352d9
...
...
@@ -109,6 +109,6 @@ void CV_FramecountTest::run(int)
}
}
}
#if BUILD_WITH_VIDEO_INPUT_SUPPORT
#if BUILD_WITH_VIDEO_INPUT_SUPPORT
&& defined HAVE_FFMPEG
TEST
(
Highgui_Video
,
framecount
)
{
CV_FramecountTest
test
;
test
.
safe_run
();}
#endif
modules/highgui/test/test_positioning.cpp
View file @
22e352d9
...
...
@@ -217,7 +217,7 @@ void CV_VideoRandomPositioningTest::run(int)
run_test
(
RANDOM
);
}
#if BUILD_WITH_VIDEO_INPUT_SUPPORT
#if BUILD_WITH_VIDEO_INPUT_SUPPORT
&& defined HAVE_FFMPEG
TEST
(
Highgui_Video
,
seek_progressive
)
{
CV_VideoProgressivePositioningTest
test
;
test
.
safe_run
();
}
TEST
(
Highgui_Video
,
seek_random
)
{
CV_VideoRandomPositioningTest
test
;
test
.
safe_run
();
}
#endif
\ No newline at end of file
modules/highgui/test/test_video_pos.cpp
View file @
22e352d9
...
...
@@ -173,6 +173,6 @@ public:
Size
framesize
;
};
#if BUILD_WITH_VIDEO_INPUT_SUPPORT && BUILD_WITH_VIDEO_OUTPUT_SUPPORT
#if BUILD_WITH_VIDEO_INPUT_SUPPORT && BUILD_WITH_VIDEO_OUTPUT_SUPPORT
&& defined HAVE_FFMPEG
TEST
(
Highgui_Video
,
seek_random_synthetic
)
{
CV_PositioningTest
test
;
test
.
safe_run
();
}
#endif
modules/imgproc/src/imgwarp.cpp
View file @
22e352d9
...
...
@@ -220,7 +220,7 @@ static const void* initInterTab2D( int method, bool fixpt )
return
fixpt
?
(
const
void
*
)
itab
:
(
const
void
*
)
tab
;
}
#ifndef __MINGW32__
static
bool
initAllInterTab2D
()
{
return
initInterTab2D
(
INTER_LINEAR
,
false
)
&&
...
...
@@ -232,6 +232,7 @@ static bool initAllInterTab2D()
}
static
volatile
bool
doInitAllInterTab2D
=
initAllInterTab2D
();
#endif
template
<
typename
ST
,
typename
DT
>
struct
Cast
{
...
...
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