summaryrefslogtreecommitdiff
path: root/src/reel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-09-09 12:48:47 +0100
committerCarl Hetherington <cth@carlh.net>2012-09-09 12:48:47 +0100
commit5c29a3586ea262abcc8829bf267d38d8a5a84d9b (patch)
tree394c46a1b18d0b02b19b3b99439fdb5e33e11b85 /src/reel.cc
parent403c1e43d7e12af9ae72291f4bdff78fd242f9f6 (diff)
Somewhat hacky rearrangement to support multiple CPLs per DCP.
Diffstat (limited to 'src/reel.cc')
-rw-r--r--src/reel.cc32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/reel.cc b/src/reel.cc
index 431af69a..50426cc1 100644
--- a/src/reel.cc
+++ b/src/reel.cc
@@ -46,38 +46,6 @@ Reel::write_to_cpl (ostream& s) const
}
}
-void
-Reel::write_to_pkl (ostream& s) const
-{
- if (_main_picture) {
- _main_picture->write_to_pkl (s);
- }
-
- if (_main_sound) {
- _main_sound->write_to_pkl (s);
- }
-
- if (_main_subtitle) {
- _main_subtitle->write_to_pkl (s);
- }
-}
-
-void
-Reel::write_to_assetmap (ostream& s) const
-{
- if (_main_picture) {
- _main_picture->write_to_assetmap (s);
- }
-
- if (_main_sound) {
- _main_sound->write_to_assetmap (s);
- }
-
- if (_main_subtitle) {
- _main_subtitle->write_to_assetmap (s);
- }
-}
-
list<string>
Reel::equals (boost::shared_ptr<const Reel> other, EqualityOptions opt) const
{