Update command line help

This commit is contained in:
Joni Räsänen 2021-11-24 17:03:25 +02:00
parent 826ef53dd2
commit 757b23ac10
4 changed files with 16 additions and 8 deletions

View File

@ -259,13 +259,17 @@ sub print_help {
print "usage (benchmark):\n ./benchmark.pl \n"
. "\t--lib <uvgrtp|ffmpeg|live555>\n"
. "\t--role <send|recv>\n"
. "\t--file <test filename>\n"
. "\t--file <test filename> make sure you also have the companion file\n"
. "\t--saddr <sender address>\n"
. "\t--raddr <receiver address>\n"
. "\t--port <used port>\n"
. "\t--threads <# of threads>\n"
. "\t--srtp\n"
. "\t--format <hevc/vvc> \n"
. "\t--start <start fps>\n"
. "\t--end <end fps>\n\n";
. "\t--end <end fps>\n\n"
. "\t--fps <a list of individual fps values> Alternative to --start and --end\n\n"
. "\t--rounds <how many times the test is run>\n\n";
print "usage (latency):\n ./benchmark.pl \n"
. "\t--latency\n"
@ -273,7 +277,10 @@ sub print_help {
. "\t--saddr <sender address>\n"
. "\t--raddr <receiver address>\n"
. "\t--port <used port>\n"
. "\t--srtp\n"
. "\t--format <hevc/vvc> \n"
. "\t--fps <the fps at which benchmarking is done>\n"
. "\t--rounds <how many times the test is run>\n"
. "\t--lib <uvgrtp|ffmpeg|live555>\n\n" and exit;
}
@ -283,7 +290,7 @@ GetOptions(
"sender_addr|saddr=s" => \(my $saddr = ""),
"receiver_addr|raddr=s" => \(my $raddr = ""),
"port|p=i" => \(my $port = 0),
"iterations|iter|i=i" => \(my $iter = 10),
"iterations|ite|rounds|i=i" => \(my $iter = 10),
"input|filename|file|in=s" => \(my $file = ""),
"threads|t=i" => \(my $threads = 1),
"start|s=f" => \(my $start = 0),

View File

@ -9,7 +9,7 @@ $| = 1; # autoflush
sub print_help {
print "usage (create):\n"
. "./create.pl \n"
. "\t--input <filename of YUV420 file>\n"
. "\t--input <filename of YUV420 file> (mandatory)\n"
. "\t--res <{width}x{height}>\n"
. "\t--qp <qp value>\n"
. "\t--fps <file framerate value>\n"

View File

@ -9,9 +9,10 @@ $| = 1; # autoflush
sub print_help {
print "usage (network):\n"
. "./network.pl \n"
. "\t--role <s/c>\n"
. "\t--address <send or receive address>\n"
. "\t--role <s/c> (mandatory)\n"
. "\t--address <send or receive address> (mandatory for sender)\n"
. "\t--port <qp value>\n"
. "\t--psize <size of tested packets>\n"
}
GetOptions(

View File

@ -429,9 +429,9 @@ sub print_help {
print "usage (directory):\n ./parse.pl \n"
. "\t--parse <best|all|csv>\n"
. "\t--lib <uvgrtp|ffmpeg|live555>\n"
. "\t--iter <# of iterations>)\n"
. "\t--iter <# of iterations> (not needed if correct file format)\n"
. "\t--unit <mb|mbit|gbit> (defaults to mb)\n"
. "\t--filesize <size of the test file in bytes>\n"
. "\t--filesize <size of the test file in bytes> (use ls -l to get this, mandatory)\n"
. "\t--packet-loss <allowed percentage of dropped packets> (optional)\n"
. "\t--frame-loss <allowed percentage of dropped frames> (optional)\n"
. "\t--path <path to folder with send and recv output files>\n" and exit;