summaryrefslogtreecommitdiff
path: root/src/lib/player.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-13 12:02:55 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-13 12:02:55 +0100
commitab011bbc0d68ff676a672c7c4c1bef81e84a5007 (patch)
treeb12320f8f51a5ea9b0695b59d824ccaaf789cda6 /src/lib/player.h
parent62fd695e95c8bd57669cced7a97fcdb0a34466e8 (diff)
Remove Player::_burn_subtitles; allow subtitles to be burnt onto areas with no video content.
Diffstat (limited to 'src/lib/player.h')
-rw-r--r--src/lib/player.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/lib/player.h b/src/lib/player.h
index a96c93404..6805dc8c7 100644
--- a/src/lib/player.h
+++ b/src/lib/player.h
@@ -90,9 +90,6 @@ public:
void set_video_container_size (dcp::Size);
void set_approximate_size ();
- void set_burn_subtitles (bool burn) {
- _burn_subtitles = burn;
- }
PlayerStatistics const & statistics () const;
@@ -123,13 +120,6 @@ private:
AudioFrame dcp_to_content_audio (boost::shared_ptr<const Piece> piece, DCPTime t) const;
ContentTime dcp_to_content_subtitle (boost::shared_ptr<const Piece> piece, DCPTime t) const;
boost::shared_ptr<PlayerVideoFrame> black_player_video_frame () const;
- boost::shared_ptr<PlayerVideoFrame> content_to_player_video_frame (
- boost::shared_ptr<VideoContent> content,
- ContentVideo content_video,
- std::list<boost::shared_ptr<Piece> > subs,
- DCPTime time,
- dcp::Size image_size
- ) const;
/** @return Pieces of content type C that overlap a specified time range in the DCP */
template<class C>