diff options
Diffstat (limited to 'src/lib/subtitle_decoder.h')
| -rw-r--r-- | src/lib/subtitle_decoder.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/subtitle_decoder.h b/src/lib/subtitle_decoder.h index 0c299f61f..628f4d60d 100644 --- a/src/lib/subtitle_decoder.h +++ b/src/lib/subtitle_decoder.h @@ -19,6 +19,8 @@ #include <boost/signals2.hpp> #include "decoder.h" +#include "rect.h" +#include "types.h" class Film; class TimedSubtitle; @@ -28,8 +30,8 @@ class SubtitleDecoder : public virtual Decoder public: SubtitleDecoder (boost::shared_ptr<const Film>); - boost::signals2::signal<void (boost::shared_ptr<TimedSubtitle>)> Subtitle; + boost::signals2::signal<void (boost::shared_ptr<Image>, dcpomatic::Rect<double>, Time, Time)> Subtitle; protected: - void subtitle (boost::shared_ptr<TimedSubtitle>); + void subtitle (boost::shared_ptr<Image>, dcpomatic::Rect<double>, Time, Time); }; |
