summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-07 16:33:22 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-07 16:33:22 +0000
commit9fc6bcde891567ca04fe2d9835ab48a17c9b69a7 (patch)
tree27427b47d26a2fc4312eb5ecbd21a5771624c9bc /tools
parent33de896f03af15f1b544b74f177aae917f66bac3 (diff)
Rename mxf filename ignoring stuff slightly.
Diffstat (limited to 'tools')
-rw-r--r--tools/dcpdiff.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/dcpdiff.cc b/tools/dcpdiff.cc
index bf2a144c..c99a8523 100644
--- a/tools/dcpdiff.cc
+++ b/tools/dcpdiff.cc
@@ -37,7 +37,7 @@ help (string n)
<< " -V, --version show libdcp version\n"
<< " -h, --help show this help\n"
<< " -v, --verbose be verbose\n"
- << " -n, --mxf-names allow differing MXF names\n"
+ << " -n, --mxf-filenames allow differing MXF filenames\n"
<< " --cpl-annotation-texts allow differing CPL annotation texts\n"
<< " -m, --mean-pixel maximum allowed mean pixel error (default 5)\n"
<< " -s, --std-dev-pixel maximum allowed standard deviation of pixel error (default 5)\n"
@@ -93,7 +93,7 @@ main (int argc, char* argv[])
{ "version", no_argument, 0, 'V'},
{ "help", no_argument, 0, 'h'},
{ "verbose", no_argument, 0, 'v'},
- { "mxf-names", no_argument, 0, 'n'},
+ { "mxf-filenames", no_argument, 0, 'n'},
{ "mean-pixel", required_argument, 0, 'm'},
{ "std-dev-pixel", required_argument, 0, 's'},
{ "keep-going", no_argument, 0, 'k'},
@@ -120,7 +120,7 @@ main (int argc, char* argv[])
verbose = true;
break;
case 'n':
- options.mxf_names_can_differ = true;
+ options.mxf_filenames_can_differ = true;
break;
case 'm':
options.max_mean_pixel_error = atof (optarg);