Compute LUTs at run-time.
[libdcp.git] / src / util.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef LIBDCP_UTIL_H
21 #define LIBDCP_UTIL_H
22
23 /** @file  src/util.h
24  *  @brief Utility methods.
25  */
26
27 #include <string>
28 #include <stdint.h>
29 #include <boost/shared_ptr.hpp>
30 #include <openjpeg.h>
31 #include "types.h"
32
33 namespace libdcp {
34
35 class ARGBFrame;
36 class GammaLUT;
37 class XYZsRGBLUT;
38
39 struct Size {
40         Size ()
41                 : width (0)
42                 , height (0)
43         {}
44
45         Size (int w, int h)
46                 : width (w)
47                 , height (h)
48         {}
49         
50         int width;
51         int height;
52 };
53         
54 extern bool operator== (Size const & a, Size const & b);
55 extern bool operator!= (Size const & a, Size const & b);
56
57 extern std::string make_uuid ();
58 extern std::string make_digest (std::string filename);
59 extern std::string content_kind_to_string (ContentKind kind);
60 extern ContentKind content_kind_from_string (std::string kind);
61 extern bool empty_or_white_space (std::string s);
62 extern opj_image_t* decompress_j2k (uint8_t* data, int64_t size, int reduce);
63 extern boost::shared_ptr<ARGBFrame> xyz_to_rgb (opj_image_t* xyz_frame, boost::shared_ptr<const GammaLUT>, boost::shared_ptr<const XYZsRGBLUT>);
64
65 }
66
67 #endif