2012-04-13 21:50:59 +00:00
|
|
|
#include "perf_precomp.hpp"
|
|
|
|
|
2013-01-28 13:14:47 +04:00
|
|
|
#if BUILD_WITH_VIDEO_INPUT_SUPPORT
|
|
|
|
|
2012-04-13 21:50:59 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace cv;
|
|
|
|
using namespace perf;
|
|
|
|
using std::tr1::make_tuple;
|
|
|
|
using std::tr1::get;
|
|
|
|
|
2012-10-26 14:55:16 +04:00
|
|
|
|
2012-10-10 19:40:19 +04:00
|
|
|
typedef perf::TestBaseWithParam<String> VideoCapture_Reading;
|
2012-04-13 21:50:59 +00:00
|
|
|
|
2013-05-24 06:34:42 -07:00
|
|
|
#if defined(HAVE_MSMF)
|
|
|
|
// MPEG2 is not supported by Media Foundation yet
|
|
|
|
// http://social.msdn.microsoft.com/Forums/en-US/mediafoundationdevelopment/thread/39a36231-8c01-40af-9af5-3c105d684429
|
|
|
|
PERF_TEST_P(VideoCapture_Reading, ReadFile, testing::Values( "highgui/video/big_buck_bunny.avi",
|
|
|
|
"highgui/video/big_buck_bunny.mov",
|
|
|
|
"highgui/video/big_buck_bunny.mp4",
|
|
|
|
"highgui/video/big_buck_bunny.wmv" ) )
|
|
|
|
|
|
|
|
#else
|
2012-10-10 19:40:19 +04:00
|
|
|
PERF_TEST_P(VideoCapture_Reading, ReadFile, testing::Values( "highgui/video/big_buck_bunny.avi",
|
2012-04-13 21:50:59 +00:00
|
|
|
"highgui/video/big_buck_bunny.mov",
|
|
|
|
"highgui/video/big_buck_bunny.mp4",
|
|
|
|
"highgui/video/big_buck_bunny.mpg",
|
2012-10-10 19:40:19 +04:00
|
|
|
"highgui/video/big_buck_bunny.wmv" ) )
|
2013-05-24 06:34:42 -07:00
|
|
|
#endif
|
2012-04-13 21:50:59 +00:00
|
|
|
{
|
2012-10-10 19:40:19 +04:00
|
|
|
string filename = getDataPath(GetParam());
|
2012-04-13 21:50:59 +00:00
|
|
|
|
|
|
|
VideoCapture cap;
|
|
|
|
|
|
|
|
TEST_CYCLE() cap.open(filename);
|
|
|
|
|
2012-10-09 19:39:03 +04:00
|
|
|
bool dummy = cap.isOpened();
|
|
|
|
SANITY_CHECK(dummy);
|
2012-04-13 21:50:59 +00:00
|
|
|
}
|
2012-10-26 14:55:16 +04:00
|
|
|
|
2013-08-21 17:26:54 +04:00
|
|
|
#endif // BUILD_WITH_VIDEO_INPUT_SUPPORT
|