32-bit fixes
This commit is contained in:
parent
9e1539a2b9
commit
01d43796ad
28 changed files with 91 additions and 91 deletions
|
@ -109,7 +109,7 @@ void Analyser::init(Util::Config &conf){
|
|||
opt["long"] = "timeout";
|
||||
opt["short"] = "T";
|
||||
opt["arg"] = "num";
|
||||
opt["default"] = 0ll;
|
||||
opt["default"] = 0;
|
||||
opt["help"] = "Time out after X seconds of processing/retrieving";
|
||||
conf.addOption("timeout", opt);
|
||||
opt.null();
|
||||
|
|
|
@ -23,7 +23,7 @@ void AnalyserTS::init(Util::Config &conf){
|
|||
opt["long"] = "detail";
|
||||
opt["short"] = "D";
|
||||
opt["arg"] = "num";
|
||||
opt["default"] = 3ll;
|
||||
opt["default"] = 3;
|
||||
opt["help"] = "Detail level of analysis bitmask (default=3). 1 = PES, 2 = TS non-stream pkts, 4 "
|
||||
"= TS stream pkts, 32 = raw PES packet bytes, 64 = raw TS packet bytes";
|
||||
conf.addOption("detail", opt);
|
||||
|
@ -31,7 +31,7 @@ void AnalyserTS::init(Util::Config &conf){
|
|||
opt["long"] = "pid";
|
||||
opt["short"] = "P";
|
||||
opt["arg"] = "num";
|
||||
opt["default"] = 0ll;
|
||||
opt["default"] = 0;
|
||||
opt["help"] = "Only use the given PID, ignore others";
|
||||
conf.addOption("pid", opt);
|
||||
opt.null();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue