From: Andrey Kamaev Date: Wed, 10 Oct 2012 15:40:19 +0000 (+0400) Subject: Remove second argument from VideoCapture_Reading perf test X-Git-Tag: accepted/2.0/20130307.220821~364^2~62 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6a87531249125c790c723f865f0e16f0c6f9794;p=profile%2Fivi%2Fopencv.git Remove second argument from VideoCapture_Reading perf test --- diff --git a/modules/highgui/perf/perf_input.cpp b/modules/highgui/perf/perf_input.cpp index 79f864c..06e3c2c 100644 --- a/modules/highgui/perf/perf_input.cpp +++ b/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 VideoCapture_Reading_t; -typedef perf::TestBaseWithParam VideoCapture_Reading; +typedef perf::TestBaseWithParam 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;