summaryrefslogtreecommitdiff
path: root/src/lib/player.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-19 21:33:52 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-19 23:45:23 +0100
commit11fe3ab56ad59b8b5525fa795d44d2323ef6d5b8 (patch)
tree3bd7b96fee95bf6b34acdfbfdb47c92bfb5c818b /src/lib/player.h
parent0ab83642f0c96ae2681beae04873b3226338a570 (diff)
Get types into ReelWriter.
Diffstat (limited to 'src/lib/player.h')
-rw-r--r--src/lib/player.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/player.h b/src/lib/player.h
index a4170f83e..c936524a2 100644
--- a/src/lib/player.h
+++ b/src/lib/player.h
@@ -98,10 +98,10 @@ public:
/** Emitted when a video frame is ready. These emissions happen in the correct order. */
boost::signals2::signal<void (boost::shared_ptr<PlayerVideo>, DCPTime)> Video;
boost::signals2::signal<void (boost::shared_ptr<AudioBuffers>, DCPTime)> Audio;
- /** Emitted when a subtitle is ready. This signal may be emitted considerably
+ /** Emitted when a caption is ready. This signal may be emitted considerably
* after the corresponding Video.
*/
- boost::signals2::signal<void (PlayerText, DCPTimePeriod)> Subtitle;
+ boost::signals2::signal<void (PlayerText, TextType, DCPTimePeriod)> Text;
private:
friend class PlayerWrapper;