diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-19 20:40:36 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-19 20:40:36 +0000 |
| commit | f113b2aaca7a65f7b37e12a7d9f3f99e2d834e81 (patch) | |
| tree | 6ea2ed1d480304a4aaf512e380cd013bbf42e86c /src/lib/subtitle_decoder.h | |
| parent | fab7fa5a9ef1d069c7ca32e3669d0e37e896250c (diff) | |
Move position variables into the video/audio/subtitle decoder classes.
Diffstat (limited to 'src/lib/subtitle_decoder.h')
| -rw-r--r-- | src/lib/subtitle_decoder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/subtitle_decoder.h b/src/lib/subtitle_decoder.h index eba36315e..df4946c07 100644 --- a/src/lib/subtitle_decoder.h +++ b/src/lib/subtitle_decoder.h @@ -25,6 +25,7 @@ #include "rect.h" #include "types.h" #include "content_subtitle.h" +#include "decoder_part.h" #include <dcp/subtitle_string.h> namespace sub { @@ -33,7 +34,7 @@ namespace sub { class Image; -class SubtitleDecoder +class SubtitleDecoder : public DecoderPart { public: /** Second parameter to the _during functions is true if we @@ -63,7 +64,6 @@ public: private: - Decoder* _parent; std::list<ContentImageSubtitle> _decoded_image; std::list<ContentTextSubtitle> _decoded_text; boost::shared_ptr<const SubtitleContent> _content; |
