summaryrefslogtreecommitdiff
path: root/src/reel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-02 21:51:56 +0100
committerCarl Hetherington <cth@carlh.net>2012-10-02 21:51:56 +0100
commit8fca5499789ae1deb2dbcad8d3501a8f42fb95f0 (patch)
treef77fd52ac2ade3f14eb686a3dfcd23d3d1277824 /src/reel.cc
parent0884b93386c0b6858eae0236d75a4eba12176219 (diff)
Clean up DCP comparison a bit.
Diffstat (limited to 'src/reel.cc')
-rw-r--r--src/reel.cc32
1 files changed, 15 insertions, 17 deletions
diff --git a/src/reel.cc b/src/reel.cc
index 50426cc1..52a4f0fb 100644
--- a/src/reel.cc
+++ b/src/reel.cc
@@ -46,38 +46,36 @@ Reel::write_to_cpl (ostream& s) const
}
}
-list<string>
-Reel::equals (boost::shared_ptr<const Reel> other, EqualityOptions opt) const
+bool
+Reel::equals (boost::shared_ptr<const Reel> other, EqualityOptions opt, list<string>& notes) const
{
- list<string> o;
-
if ((_main_picture && !other->_main_picture) || (!_main_picture && other->_main_picture)) {
- o.push_back ("reel has different assets");
+ notes.push_back ("reel has different assets");
+ return false;
}
- if (_main_picture) {
- list<string> m = _main_picture->equals (other->_main_picture, opt);
- o.merge (m);
+ if (_main_picture && !_main_picture->equals (other->_main_picture, opt, notes)) {
+ return false;
}
if ((_main_sound && !other->_main_sound) || (!_main_sound && other->_main_sound)) {
- o.push_back ("reel has different assets");
+ notes.push_back ("reel has different assets");
+ return false;
}
- if (_main_sound) {
- list<string> m = _main_sound->equals (other->_main_sound, opt);
- o.merge (m);
+ if (_main_sound && !_main_sound->equals (other->_main_sound, opt, notes)) {
+ return false;
}
if ((_main_subtitle && !other->_main_subtitle) || (!_main_subtitle && other->_main_subtitle)) {
- o.push_back ("reel has different assets");
+ notes.push_back ("reel has different assets");
+ return false;
}
- if (_main_subtitle) {
- list<string> m = _main_subtitle->equals (other->_main_subtitle, opt);
- o.merge (m);
+ if (_main_subtitle && !_main_subtitle->equals (other->_main_subtitle, opt, notes)) {
+ return false;
}
- return o;
+ return true;
}