More automated renaming.
[dcpomatic.git] / src / lib / decoder.cc
index e7e6b8620e9332e0dc51f79f8c5d4e743f884758..52949a0989d83be7895f2117591a3dc7fedadc17 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -27,6 +27,7 @@
 
 using std::cout;
 using boost::optional;
+using boost::shared_ptr;
 
 /** @return Earliest time of content that the next pass() will emit */
 ContentTime
@@ -42,8 +43,10 @@ Decoder::position () const
                pos = audio->position();
        }
 
-       if (subtitle && !subtitle->ignore() && (!pos || subtitle->position() < *pos)) {
-               pos = subtitle->position();
+       BOOST_FOREACH (shared_ptr<TextDecoder> i, caption) {
+               if (!i->ignore() && (!pos || i->position() < *pos)) {
+                       pos = i->position();
+               }
        }
 
        return pos.get_value_or(ContentTime());
@@ -58,7 +61,17 @@ Decoder::seek (ContentTime, bool)
        if (audio) {
                audio->seek ();
        }
-       if (subtitle) {
-               subtitle->seek ();
+       BOOST_FOREACH (shared_ptr<TextDecoder> i, caption) {
+               i->seek ();
        }
 }
+
+shared_ptr<TextDecoder>
+Decoder::only_caption () const
+{
+       DCPOMATIC_ASSERT (caption.size() < 2);
+       if (caption.empty ()) {
+               return shared_ptr<TextDecoder> ();
+       }
+       return caption.front ();
+}