More automated renaming.
[dcpomatic.git] / src / lib / decoder.h
index c3b330cfbcd49bdf376cba575ca52c7e5ab2d258..1b330316ecc7c5c8812720ba4c8f1835f12fda9c 100644 (file)
@@ -32,7 +32,7 @@
 class Decoded;
 class VideoDecoder;
 class AudioDecoder;
-class CaptionDecoder;
+class TextDecoder;
 class DecoderPart;
 
 /** @class Decoder.
@@ -45,7 +45,9 @@ public:
 
        boost::shared_ptr<VideoDecoder> video;
        boost::shared_ptr<AudioDecoder> audio;
-       boost::shared_ptr<CaptionDecoder> caption;
+       std::list<boost::shared_ptr<TextDecoder> > caption;
+
+       boost::shared_ptr<TextDecoder> 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.