It builds again.
[libdcp.git] / src / picture_mxf_writer.h
1 /*
2     Copyright (C) 2012-2014 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 "metadata.h"
21 #include "types.h"
22 #include "mxf_writer.h"
23 #include <boost/shared_ptr.hpp>
24 #include <boost/utility.hpp>
25 #include <stdint.h>
26 #include <string>
27 #include <fstream>
28
29 namespace dcp {
30
31 class PictureMXF;       
32
33 /** Information about a single frame (either a monoscopic frame or a left *or* right eye stereoscopic frame) */ 
34 struct FrameInfo
35 {
36         FrameInfo (uint64_t o, uint64_t s, std::string h)
37                 : offset (o)
38                 , size (s)
39                 , hash (h)
40         {}
41
42         FrameInfo (std::istream& s);
43         FrameInfo (FILE *);
44
45         void write (std::ostream& s) const;
46         void write (FILE *) const;
47         
48         uint64_t offset;
49         uint64_t size;
50         std::string hash;
51 };
52
53 class PictureMXFWriter : public MXFWriter
54 {
55 public:
56         virtual FrameInfo write (uint8_t *, int) = 0;
57         virtual void fake_write (int) = 0;
58
59 protected:
60         template <class P, class Q>
61         friend void start (PictureMXFWriter *, boost::shared_ptr<P>, Standard, Q *, uint8_t *, int);
62
63         PictureMXFWriter (PictureMXF *, boost::filesystem::path, Standard standard, bool);
64
65         PictureMXF* _picture_mxf;
66         bool _started;
67         Standard _standard;
68         bool _overwrite;
69 };
70
71 }