Rename Subtitle -> Text
[dcpomatic.git] / src / lib / decoder.h
index d87ff610ac47d3a9eae2eb795ac072a397c26b3f..27f0b114144187e02acdc882bef93a0c8dfdb82c 100644 (file)
@@ -32,7 +32,7 @@
 class Decoded;
 class VideoDecoder;
 class AudioDecoder;
-class SubtitleDecoder;
+class TextDecoder;
 class DecoderPart;
 
 /** @class Decoder.
@@ -45,7 +45,7 @@ public:
 
        boost::shared_ptr<VideoDecoder> video;
        boost::shared_ptr<AudioDecoder> audio;
-       boost::shared_ptr<SubtitleDecoder> subtitle;
+       boost::shared_ptr<TextDecoder> subtitle;
 
        /** 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.