summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-12 20:55:29 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-12 20:55:29 +0100
commitf28303e1f00075841ac00fe4bb18ca37cbf1a7af (patch)
tree82329bd11c6b061beec3c2e0f6db701fd7983fa4 /src/util.h
parent493875161c36a782a785c191ff997c8e26cccde3 (diff)
Add XYZFrame and use it.
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.h b/src/util.h
index fab7bd37..e712d6fa 100644
--- a/src/util.h
+++ b/src/util.h
@@ -39,7 +39,7 @@ namespace libdcp {
class ARGBFrame;
class CertificateChain;
class GammaLUT;
-class XYZsRGBLUT;
+class XYZFrame;
struct Size {
Size ()
@@ -64,8 +64,8 @@ extern std::string make_digest (std::string filename);
extern std::string content_kind_to_string (ContentKind kind);
extern ContentKind content_kind_from_string (std::string kind);
extern bool empty_or_white_space (std::string s);
-extern opj_image_t* decompress_j2k (uint8_t* data, int64_t size, int reduce);
-extern boost::shared_ptr<ARGBFrame> xyz_to_rgb (opj_image_t* xyz_frame, boost::shared_ptr<const GammaLUT>, boost::shared_ptr<const GammaLUT>);
+extern boost::shared_ptr<XYZFrame> decompress_j2k (uint8_t* data, int64_t size, int reduce);
+extern boost::shared_ptr<ARGBFrame> xyz_to_rgb (boost::shared_ptr<const XYZFrame>, boost::shared_ptr<const GammaLUT>, boost::shared_ptr<const GammaLUT>);
extern void init ();