X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fplayer.h;h=e515fced345bdd39a610e70c24c1a9383866663a;hb=d75e4c652fac5d3c65b42b03249f3c6e0836f772;hp=a3b745c8e4ca69acd641cb106be7b733ca19e7da;hpb=22b9f3b2090d8bdfe52cda1e69d3acbe874f1ce5;p=dcpomatic.git diff --git a/src/lib/player.h b/src/lib/player.h index a3b745c8e..e515fced3 100644 --- a/src/lib/player.h +++ b/src/lib/player.h @@ -20,10 +20,6 @@ #ifndef DCPOMATIC_PLAYER_H #define DCPOMATIC_PLAYER_H -#include -#include -#include -#include "playlist.h" #include "content.h" #include "film.h" #include "rect.h" @@ -34,10 +30,12 @@ #include "piece.h" #include "content_video.h" #include "player_subtitles.h" +#include +#include +#include class Job; class Film; -class Playlist; class AudioContent; class Piece; class Image; @@ -45,6 +43,7 @@ class Decoder; class Resampler; class PlayerVideo; class ImageProxy; +class Font; class PlayerStatistics { @@ -79,19 +78,22 @@ public: }; /** @class Player - * @brief A class which can `play' a Playlist. + * @brief A class which can `play' a Film. */ class Player : public boost::enable_shared_from_this, public boost::noncopyable { public: - Player (boost::shared_ptr, boost::shared_ptr); + Player (boost::shared_ptr); std::list > get_video (DCPTime time, bool accurate); boost::shared_ptr get_audio (DCPTime time, DCPTime length, bool accurate); PlayerSubtitles get_subtitles (DCPTime time, DCPTime length, bool starting); + std::list > get_subtitle_fonts (); void set_video_container_size (dcp::Size); - void set_approximate_size (); + void set_ignore_video (); + void set_enable_subtitles (bool enable); + void set_burn_subtitles (bool burn); PlayerStatistics const & statistics () const; @@ -109,15 +111,14 @@ private: friend struct player_overlaps_test; void setup_pieces (); - void playlist_changed (); void content_changed (boost::weak_ptr, int, bool); void flush (); void film_changed (Film::Property); std::list transform_image_subtitles (std::list) const; void update_subtitle_from_text (); - VideoFrame dcp_to_content_video (boost::shared_ptr piece, DCPTime t) const; - DCPTime content_video_to_dcp (boost::shared_ptr piece, VideoFrame f) const; - AudioFrame dcp_to_content_audio (boost::shared_ptr piece, DCPTime t) const; + Frame dcp_to_content_video (boost::shared_ptr piece, DCPTime t) const; + DCPTime content_video_to_dcp (boost::shared_ptr piece, Frame f) const; + Frame dcp_to_content_audio (boost::shared_ptr piece, DCPTime t) const; ContentTime dcp_to_content_subtitle (boost::shared_ptr piece, DCPTime t) const; boost::shared_ptr black_player_video_frame (DCPTime) const; @@ -145,22 +146,25 @@ private: } boost::shared_ptr _film; - boost::shared_ptr _playlist; /** Our pieces are ready to go; if this is false the pieces must be (re-)created before they are used */ bool _have_valid_pieces; std::list > _pieces; + /** Size of the image in the DCP (e.g. 1990x1080 for flat) */ dcp::Size _video_container_size; boost::shared_ptr _black_image; - bool _approximate_size; + /** true if the player should ignore all video; i.e. never produce any */ + bool _ignore_video; + /** true if the player should burn subtitles into the video */ bool _burn_subtitles; + boost::shared_ptr _audio_processor; + PlayerStatistics _statistics; - boost::signals2::scoped_connection _playlist_changed_connection; - boost::signals2::scoped_connection _playlist_content_changed_connection; + boost::signals2::scoped_connection _film_content_changed_connection; boost::signals2::scoped_connection _film_changed_connection; };