3a587280b0e4a0c105f8b2e969c7811649dd9ff8
[libdcp.git] / src / picture_mxf.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_PICTURE_MXF_H
21 #define LIBDCP_PICTURE_MXF_H
22
23 /** @file  src/picture_asset.h
24  *  @brief An asset made up of JPEG2000 data
25  */
26
27 #include <openjpeg.h>
28 #include "mxf.h"
29 #include "util.h"
30 #include "metadata.h"
31
32 namespace ASDCP {
33         namespace JP2K {
34                 class PictureDescriptor;
35         }
36 }
37
38 namespace dcp
39 {
40
41 class MonoPictureFrame; 
42 class StereoPictureFrame;
43 class PictureMXFWriter;
44
45 /** @brief An asset made up of JPEG2000 data */
46 class PictureMXF : public MXF
47 {
48 public:
49         PictureMXF (boost::filesystem::path file);
50         PictureMXF (int edit_rate);
51
52         virtual boost::shared_ptr<PictureMXFWriter> start_write (boost::filesystem::path file, bool overwrite) = 0;
53
54         Size size () const {
55                 return _size;
56         }
57
58         void set_size (Size s) {
59                 _size = s;
60         }
61
62         void write_to_cpl (xmlpp::Element *) const;
63
64 protected:      
65
66         bool frame_buffer_equals (
67                 int frame, EqualityOptions opt, boost::function<void (NoteType, std::string)> note,
68                 uint8_t const * data_A, unsigned int size_A, uint8_t const * data_B, unsigned int size_B
69                 ) const;
70
71         bool descriptor_equals (
72                 ASDCP::JP2K::PictureDescriptor const & a, ASDCP::JP2K::PictureDescriptor const & b, boost::function<void (NoteType, std::string)>
73                 ) const;
74
75         /** picture size in pixels */
76         Size _size;
77
78 private:
79         std::string key_type () const;
80         virtual int edit_rate_factor () const = 0;
81 };
82         
83
84 }
85
86 #endif