Basics of multiple captions per content so that DCPContent can
[dcpomatic.git] / src / lib / decoder.h
index 27f0b114144187e02acdc882bef93a0c8dfdb82c..d48df7517814aeb14de7b499f510615dd186d0dc 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.
 
@@ -32,7 +32,7 @@
 class Decoded;
 class VideoDecoder;
 class AudioDecoder;
-class TextDecoder;
+class CaptionDecoder;
 class DecoderPart;
 
 /** @class Decoder.
@@ -45,7 +45,9 @@ public:
 
        boost::shared_ptr<VideoDecoder> video;
        boost::shared_ptr<AudioDecoder> audio;
-       boost::shared_ptr<TextDecoder> subtitle;
+       std::list<boost::shared_ptr<CaptionDecoder> > caption;
+
+       boost::shared_ptr<CaptionDecoder> only_caption () const;
 
        /** Do some decoding and perhaps emit video, audio or subtitle data.
         *  @return true if this decoder will emit no more data unless a seek() happens.