summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlucat <luca.trisciani@dcp-werkstatt.ch>2018-11-03 02:07:52 +0100
committerGitHub <noreply@github.com>2018-11-03 02:07:52 +0100
commit2582250dda353064a66fadd1863ecc0dd8e48c63 (patch)
treea55993fd773f6d791c9ecca8d1d3282f43b60e35 /src
parent42306b64d462e60fe29fe284e46d8bcfcca7d926 (diff)
Change version to 0.18
Diffstat (limited to 'src')
-rw-r--r--src/leqm-nrt.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/leqm-nrt.c b/src/leqm-nrt.c
index 0d74ecd..9cd8a53 100644
--- a/src/leqm-nrt.c
+++ b/src/leqm-nrt.c
@@ -4,7 +4,7 @@
"Cinematography -- Method of measurement of perceived
loudness of motion-picture audio material"
- Copyright (C) 2011-2013, 2017 Luca Trisciani
+ Copyright (C) 2011-2013, 2017-2018 Luca Trisciani
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -42,7 +42,7 @@
#endif
-// Version 0.0.17 (C) Luca Trisciani 2011-2013, 2017
+// Version 0.0.18 (C) Luca Trisciani 2011-2013, 2017-2018
// Tool from the DCP-Werkstatt Software Bundle
@@ -121,7 +121,7 @@ int main(int argc, const char ** argv)
double * channelconfcalvector;
channelconfcalvector = NULL;
- printf("leqm-nrt Copyright (C) 2011-2013, 2017 Luca Trisciani\nThis program comes with ABSOLUTELY NO WARRANTY; for details on command line parameters -help\nThis is free software, and you are welcome to redistribute it\nunder the GPL v3 licence.\nProgram will use 1 + %d slave threads.\n", numCPU);
+ printf("leqm-nrt Copyright (C) 2011-2013, 2017-2018 Luca Trisciani\nThis program comes with ABSOLUTELY NO WARRANTY.\nThis is free software, and you are welcome to redistribute it\nunder the GPL v3 licence.\nProgram will use 1 + %d slave threads.\n", numCPU);
//SndfileHandle file;
SNDFILE *file;
file=NULL;
@@ -211,6 +211,14 @@ int main(int argc, const char ** argv)
continue;
}
+
+
+ if (strcmp(argv[in], "-version") == 0) {
+ in++;
+ printf("leqm-nrt version 0.18\n", npoints);
+ continue;
+
+ }
if (strcmp(argv[in], "-numcpus") == 0) {
numCPU= atoi(argv[in + 1]);
in+=2;