diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-31 01:01:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-31 01:01:19 +0100 |
| commit | da2f0d96f3c5ffa73bfecd9df613b23200e862f7 (patch) | |
| tree | 326e054f9b2dc39e0d276e6bdf2a572dbf324ecc /tools/dcpdiff.cc | |
| parent | 4678bf06d71c8a18c489912dabf8aca312ab8b6b (diff) | |
Bitwise MXF comparison.
Diffstat (limited to 'tools/dcpdiff.cc')
| -rw-r--r-- | tools/dcpdiff.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dcpdiff.cc b/tools/dcpdiff.cc index 840a1b3e..d1b49d05 100644 --- a/tools/dcpdiff.cc +++ b/tools/dcpdiff.cc @@ -49,9 +49,9 @@ main (int argc, char* argv[]) DCP a (argv[optind]); DCP b (argv[optind + 1]); - list<string> notes = a.equals (b, LIBDCP_METADATA); + list<string> notes = a.equals (b, EqualityFlags (LIBDCP_METADATA | MXF_BITWISE)); if (notes.empty ()) { - cout << "DCPs identical by LIBDCP_METADATA\n"; + cout << "DCPs identical\n"; exit (EXIT_SUCCESS); } |
