X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fdcp_video.h;h=cb38cd542db16471aa2580325ff7c4b659b47e60;hb=aeb835a18c8df347e0ed68fb24631b320abeb611;hp=d517a8f0258ab47b3f5c1b1a0a3e6e7910c2b034;hpb=3e12c68dc0451e73b5bc1a84d1d70f4999f7b4b5;p=dcpomatic.git diff --git a/src/lib/dcp_video.h b/src/lib/dcp_video.h index d517a8f02..cb38cd542 100644 --- a/src/lib/dcp_video.h +++ b/src/lib/dcp_video.h @@ -18,21 +18,17 @@ */ -#include -#include "util.h" +#include "types.h" +#include "data.h" +#include "server_description.h" +#include /** @file src/dcp_video_frame.h * @brief A single frame of video destined for a DCP. */ -class Film; -class ServerDescription; -class Scaler; -class Image; class Log; -class Subtitle; class PlayerVideo; -class EncodedData; /** @class DCPVideo * @brief A single frame of video destined for a DCP. @@ -46,11 +42,11 @@ class EncodedData; class DCPVideo : public boost::noncopyable { public: - DCPVideo (boost::shared_ptr, int, int, int, Resolution, bool b, boost::shared_ptr); + DCPVideo (boost::shared_ptr, int, int, int, Resolution, boost::shared_ptr); DCPVideo (boost::shared_ptr, cxml::ConstNodePtr, boost::shared_ptr); - boost::shared_ptr encode_locally (); - boost::shared_ptr encode_remotely (ServerDescription); + Data encode_locally (dcp::NoteHandler note); + Data encode_remotely (ServerDescription); int index () const { return _index; @@ -59,17 +55,18 @@ public: Eyes eyes () const; bool same (boost::shared_ptr other) const; - + + static boost::shared_ptr convert_to_xyz (boost::shared_ptr frame, dcp::NoteHandler note); + private: void add_metadata (xmlpp::Element *) const; - + boost::shared_ptr _frame; int _index; ///< frame index within the DCP's intrinsic duration int _frames_per_second; ///< Frames per second that we will use for the DCP int _j2k_bandwidth; ///< J2K bandwidth to use Resolution _resolution; ///< Resolution (2K or 4K) - bool _burn_subtitles; ///< true to burn subtitles into the image boost::shared_ptr _log; ///< log };