Put Film pointer into Decoder.
[dcpomatic.git] / src / lib / decoder.cc
index 2fddddc914dee09bee221af4c5b1fdc985d61c9b..52e8c04e6984f26d389d74ec61189fa80f749a69 100644 (file)
 #include "decoder.h"
 #include "video_decoder.h"
 #include "audio_decoder.h"
-#include "caption_decoder.h"
+#include "text_decoder.h"
 #include <boost/optional.hpp>
 #include <iostream>
 
 using std::cout;
 using boost::optional;
 using boost::shared_ptr;
+using boost::weak_ptr;
+
+Decoder::Decoder (weak_ptr<const Film> film)
+       : _film (film)
+{
+
+}
 
 /** @return Earliest time of content that the next pass() will emit */
 ContentTime
 Decoder::position () const
 {
        optional<ContentTime> pos;
+       shared_ptr<const Film> f = film();
 
-       if (video && !video->ignore() && (!pos || video->position() < *pos)) {
-               pos = video->position();
+       if (video && !video->ignore() && (!pos || video->position(f) < *pos)) {
+               pos = video->position(f);
        }
 
-       if (audio && !audio->ignore() && (!pos || audio->position() < *pos)) {
-               pos = audio->position();
+       if (audio && !audio->ignore() && (!pos || audio->position(f) < *pos)) {
+               pos = audio->position(f);
        }
 
-       BOOST_FOREACH (shared_ptr<CaptionDecoder> i, caption) {
-               if (!i->ignore() && (!pos || i->position() < *pos)) {
-                       pos = i->position();
+       BOOST_FOREACH (shared_ptr<TextDecoder> i, text) {
+               if (!i->ignore() && (!pos || i->position(f) < *pos)) {
+                       pos = i->position(f);
                }
        }
 
@@ -61,17 +69,25 @@ Decoder::seek (ContentTime, bool)
        if (audio) {
                audio->seek ();
        }
-       BOOST_FOREACH (shared_ptr<CaptionDecoder> i, caption) {
+       BOOST_FOREACH (shared_ptr<TextDecoder> i, text) {
                i->seek ();
        }
 }
 
-shared_ptr<CaptionDecoder>
-Decoder::only_caption () const
+shared_ptr<TextDecoder>
+Decoder::only_text () const
 {
-       DCPOMATIC_ASSERT (caption.size() < 2);
-       if (caption.empty ()) {
-               return shared_ptr<CaptionDecoder> ();
+       DCPOMATIC_ASSERT (text.size() < 2);
+       if (text.empty ()) {
+               return shared_ptr<TextDecoder> ();
        }
-       return caption.front ();
+       return text.front ();
+}
+
+shared_ptr<const Film>
+Decoder::film () const
+{
+       shared_ptr<const Film> f = _film.lock ();
+       DCPOMATIC_ASSERT (f);
+       return f;
 }