Remove some unnecessary includes.
[libdcp.git] / src / mono_picture_frame.h
index 9108926203b57b936aefc7e4941b48ccee682281..9e7a992670fbf88bd3d51afcd8ab8d7fa27325f4 100644 (file)
@@ -38,7 +38,7 @@ namespace ASDCP {
 
 namespace dcp {
 
-class XYZImage;
+class OpenJPEGImage;
 
 /** @class MonoPictureFrame
  *  @brief A single frame of a 2D (monoscopic) picture asset.
@@ -46,12 +46,12 @@ class XYZImage;
 class MonoPictureFrame : public boost::noncopyable
 {
 public:
-       MonoPictureFrame (boost::filesystem::path mxf_path, int n, ASDCP::AESDecContext *);
+       MonoPictureFrame (boost::filesystem::path path, int n, ASDCP::AESDecContext *);
        MonoPictureFrame (boost::filesystem::path path);
-       MonoPictureFrame ();
+       MonoPictureFrame (uint8_t const * data, int size);
        ~MonoPictureFrame ();
 
-       boost::shared_ptr<XYZImage> xyz_image (int reduce = 0) const;
+       boost::shared_ptr<OpenJPEGImage> xyz_image (int reduce = 0) const;
 
        uint8_t const * j2k_data () const;
        uint8_t* j2k_data ();