X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fpicture_asset.h;h=cc99ddbcbe0ea592d89000fee51a7958c44114c5;hb=d5ec30b6d746177e97707085b9e6b709e41ecc20;hp=08f892ed34e2f868b2a7937cf707aaa60fdc6d25;hpb=938f413bb4ebecd51c805027e331cb7eb0ca9502;p=libdcp.git diff --git a/src/picture_asset.h b/src/picture_asset.h index 08f892ed..cc99ddbc 100644 --- a/src/picture_asset.h +++ b/src/picture_asset.h @@ -59,21 +59,16 @@ public: */ PictureAsset (std::string directory, std::string mxf_name, boost::signals2::signal* progress, int fps, int intrinsic_duration, bool encrypted, Size); - /** Write details of this asset to a CPL XML node. - * @param node Node. - */ - void write_to_cpl (xmlpp::Node* node) const; - bool equals (boost::shared_ptr other, EqualityOptions opt, boost::function note) const; Size size () const { return _size; } + void write_to_cpl (xmlpp::Node *) const; + protected: - std::string key_type () const; - bool frame_buffer_equals ( int frame, EqualityOptions opt, boost::function note, uint8_t const * data_A, unsigned int size_A, uint8_t const * data_B, unsigned int size_B @@ -81,6 +76,10 @@ protected: /** picture size in pixels */ Size _size; + +private: + std::string key_type () const; + std::string cpl_node_name () const; }; class MonoPictureAsset;