Remove second argument from VideoCapture_Reading perf test

pull/33/merge
Andrey Kamaev 12 years ago
parent d40083a926
commit d6a8753124
  1. 11
      modules/highgui/perf/perf_input.cpp

@ -6,18 +6,15 @@ using namespace perf;
using std::tr1::make_tuple;
using std::tr1::get;
typedef std::tr1::tuple<String, bool> VideoCapture_Reading_t;
typedef perf::TestBaseWithParam<VideoCapture_Reading_t> VideoCapture_Reading;
typedef perf::TestBaseWithParam<String> VideoCapture_Reading;
PERF_TEST_P(VideoCapture_Reading, ReadFile,
testing::Combine( testing::Values( "highgui/video/big_buck_bunny.avi",
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.mpg",
"highgui/video/big_buck_bunny.wmv" ),
testing::Values(true, true, true, true, true) ))
"highgui/video/big_buck_bunny.wmv" ) )
{
string filename = getDataPath(get<0>(GetParam()));
string filename = getDataPath(GetParam());
VideoCapture cap;

Loading…
Cancel
Save