From de2af791bdfdcd653752cba970e59efc7bf810c7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 21 Nov 2016 16:57:15 +0000 Subject: Basic grunt-work, untested and unfinished, but it compiles. --- src/lib/transcoder.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/lib/transcoder.h') diff --git a/src/lib/transcoder.h b/src/lib/transcoder.h index 14f363661..1b20bbffc 100644 --- a/src/lib/transcoder.h +++ b/src/lib/transcoder.h @@ -19,6 +19,7 @@ */ #include "types.h" +#include "player_subtitles.h" #include class Film; @@ -26,6 +27,8 @@ class Encoder; class Player; class Writer; class Job; +class PlayerVideo; +class AudioBuffers; /** @class Transcoder */ class Transcoder : public boost::noncopyable @@ -44,10 +47,16 @@ public: } private: + + void video (boost::shared_ptr); + void audio (boost::shared_ptr, DCPTime); + void subtitle (PlayerSubtitles); + boost::shared_ptr _film; boost::weak_ptr _job; boost::shared_ptr _player; boost::shared_ptr _writer; boost::shared_ptr _encoder; bool _finishing; + bool _non_burnt_subtitles; }; -- cgit v1.2.3