encperf: allow # of iterations to be specified
diff --git a/tests/encperf.cxx b/tests/encperf.cxx
index 4112a37..ffa3047 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 @@
} while (!sorted);
}
-static const int runCount = 9;
-
static void usage(const char *argv0)
{
fprintf(stderr, "Syntax: %s [options] <rfb file>\n", argv0);
@@ -384,10 +383,6 @@
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 @@
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]);