diff options
Diffstat (limited to 'src/lib/decoder.h')
| -rw-r--r-- | src/lib/decoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h index d48df7517..1b330316e 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -32,7 +32,7 @@ class Decoded; class VideoDecoder; class AudioDecoder; -class CaptionDecoder; +class TextDecoder; class DecoderPart; /** @class Decoder. @@ -45,9 +45,9 @@ public: boost::shared_ptr<VideoDecoder> video; boost::shared_ptr<AudioDecoder> audio; - std::list<boost::shared_ptr<CaptionDecoder> > caption; + std::list<boost::shared_ptr<TextDecoder> > caption; - boost::shared_ptr<CaptionDecoder> only_caption () const; + 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. |
