Various work.
[libdcp.git] / src / mono_picture_mxf_writer.h
1 /*
2     Copyright (C) 2012-2013 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 #include <stdint.h>
21 #include <string>
22 #include <fstream>
23 #include <boost/shared_ptr.hpp>
24 #include <boost/utility.hpp>
25 #include "picture_mxf_writer.h"
26
27 namespace dcp {
28
29 /** A helper class for writing to MonoPictureMXFs.
30  *
31  *  Objects of this class can only be created with MonoPictureMXF::start_write().
32  *
33  *  Frames can be written to the MonoPictureAsset by calling write() with a JPEG2000 image
34  *  (a verbatim .j2c file).  finalize() must be called after the last frame has been written.
35  *  The action of finalize() can't be done in MonoPictureAssetWriter's destructor as it may
36  *  throw an exception.
37  */
38 class MonoPictureMXFWriter : public PictureMXFWriter
39 {
40 public:
41         FrameInfo write (uint8_t *, int);
42         void fake_write (int size);
43         void finalize ();
44
45 private:
46         friend class MonoPictureMXF;
47
48         MonoPictureMXFWriter (PictureMXF *, boost::filesystem::path file, bool);
49         void start (uint8_t *, int);
50
51         /* do this with an opaque pointer so we don't have to include
52            ASDCP headers
53         */
54            
55         struct ASDCPState;
56         boost::shared_ptr<ASDCPState> _state;
57 };
58
59 }