From: DRC Date: Sat, 21 Feb 2015 17:57:27 +0000 (-0600) Subject: encperf: allow # of iterations to be specified X-Git-Tag: v1.4.90~37^2~3^2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4631a76c1baf5be23f33075dc993a1231db564af;p=tigervnc.git encperf: allow # of iterations to be specified --- diff --git a/tests/encperf.cxx b/tests/encperf.cxx index 4112a37e..ffa30473 100644 --- a/tests/encperf.cxx +++ b/tests/encperf.cxx @@ -49,6 +49,7 @@ static rfb::IntParameter width("width", "Frame buffer width", 0); static rfb::IntParameter height("height", "Frame buffer height", 0); +static rfb::IntParameter count("count", "Number of benchmark iterations", 9); static rfb::StringParameter format("format", "Pixel format (e.g. bgr888)", ""); @@ -368,8 +369,6 @@ static void sort(double *array, int count) } while (!sorted); } -static const int runCount = 9; - static void usage(const char *argv0) { fprintf(stderr, "Syntax: %s [options] \n", argv0); @@ -384,10 +383,6 @@ int main(int argc, char **argv) const char *fn; - double times[runCount], dev[runCount]; - double median, meddev, ratio; - unsigned long long bytes, equivalent; - fn = NULL; for (i = 1; i < argc; i++) { if (rfb::Configuration::setParam(argv[i])) @@ -409,6 +404,11 @@ int main(int argc, char **argv) fn = argv[i]; } + int runCount = count; + double times[runCount], dev[runCount]; + double median, meddev, ratio; + unsigned long long bytes, equivalent; + if (fn == NULL) { fprintf(stderr, "No file specified!\n\n"); usage(argv[0]);