Missing namespace.
[libdcp.git] / src / stereo_picture_frame.h
index fa7620fbec8a543aa97eb6d122dac446c36093a8..578bb3debb58c09725f1fe32cd4b1b25e9644f4b 100644 (file)
 
 */
 
-#include <string>
-#include <stdint.h>
-#include <boost/shared_ptr.hpp>
 #include "types.h"
+#include <boost/shared_ptr.hpp>
+#include <boost/noncopyable.hpp>
+#include <boost/filesystem.hpp>
+#include <stdint.h>
+#include <string>
 
 namespace ASDCP {
        namespace JP2K {
-               class SFrameBuffer;
+               struct SFrameBuffer;
        }
        class AESDecContext;
 }
@@ -34,16 +36,20 @@ namespace dcp {
 class ARGBFrame;
 
 /** A single frame of a 3D (stereoscopic) picture asset */     
-class StereoPictureFrame
+class StereoPictureFrame : public boost::noncopyable
 {
 public:
        StereoPictureFrame (boost::filesystem::path mxf_path, int n);
+       StereoPictureFrame ();
        ~StereoPictureFrame ();
 
        boost::shared_ptr<ARGBFrame> argb_frame (Eye eye, int reduce = 0, float srgb_gamma = 2.4) const;
+       void rgb_frame (Eye eye, uint8_t* buffer) const;
        uint8_t const * left_j2k_data () const;
+       uint8_t* left_j2k_data ();
        int left_j2k_size () const;
        uint8_t const * right_j2k_data () const;
+       uint8_t* right_j2k_data ();
        int right_j2k_size () const;
 
 private: