summaryrefslogtreecommitdiff
path: root/src/lib/dcp_video_frame.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-10-31 11:46:05 +0000
committerCarl Hetherington <cth@carlh.net>2012-10-31 11:46:05 +0000
commit09a95eca971ddd2ea75cd615e7ef2b997d52b690 (patch)
tree3c429226dc070cbf0800a2ebbfdd72fa19b2156c /src/lib/dcp_video_frame.h
parent3ed5df31baed21633d0db9167cd75562f384dec7 (diff)
Try a different approach to frame duplication in the decoder.
Diffstat (limited to 'src/lib/dcp_video_frame.h')
-rw-r--r--src/lib/dcp_video_frame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dcp_video_frame.h b/src/lib/dcp_video_frame.h
index 4e9a777bd..0ff29f7bf 100644
--- a/src/lib/dcp_video_frame.h
+++ b/src/lib/dcp_video_frame.h
@@ -106,7 +106,7 @@ public:
class DCPVideoFrame
{
public:
- DCPVideoFrame (boost::shared_ptr<Image>, boost::shared_ptr<Subtitle>, Size, int, int, float, Scaler const *, int, float, std::string, int, int, Log *);
+ DCPVideoFrame (boost::shared_ptr<const Image>, boost::shared_ptr<Subtitle>, Size, int, int, float, Scaler const *, int, float, std::string, int, int, Log *);
virtual ~DCPVideoFrame ();
boost::shared_ptr<EncodedData> encode_locally ();
@@ -120,7 +120,7 @@ private:
void create_openjpeg_container ();
void write_encoded (boost::shared_ptr<const Options>, uint8_t *, int);
- boost::shared_ptr<Image> _input; ///< the input image
+ boost::shared_ptr<const Image> _input; ///< the input image
boost::shared_ptr<Subtitle> _subtitle; ///< any subtitle that should be on the image
Size _out_size; ///< the required size of the output, in pixels
int _padding;