Unpick MXF from the class hierarchy.
[libdcp.git] / src / picture_mxf_writer_common.cc
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 using boost::shared_ptr;
21
22 struct ASDCPStateBase
23 {
24         ASDCPStateBase ()
25                 : frame_buffer (4 * Kumu::Megabyte)
26         {}
27         
28         ASDCP::JP2K::CodestreamParser j2k_parser;
29         ASDCP::JP2K::FrameBuffer frame_buffer;
30         ASDCP::WriterInfo writer_info;
31         ASDCP::JP2K::PictureDescriptor picture_descriptor;
32 };
33
34 template <class P, class Q>
35 void dcp::start (PictureMXFWriter* writer, shared_ptr<P> state, Standard standard, Q* mxf, uint8_t* data, int size)
36 {
37         mxf->set_file (writer->_file);
38         
39         if (ASDCP_FAILURE (state->j2k_parser.OpenReadFrame (data, size, state->frame_buffer))) {
40                 boost::throw_exception (MiscError ("could not parse J2K frame"));
41         }
42
43         state->j2k_parser.FillPictureDescriptor (state->picture_descriptor);
44         state->picture_descriptor.EditRate = ASDCP::Rational (mxf->edit_rate().numerator, mxf->edit_rate().denominator);
45
46         mxf->set_size (Size (state->picture_descriptor.StoredWidth, state->picture_descriptor.StoredHeight));
47         mxf->set_screen_aspect_ratio (Fraction (state->picture_descriptor.AspectRatio.Numerator, state->picture_descriptor.AspectRatio.Denominator));
48         
49         mxf->fill_writer_info (&state->writer_info, mxf->id(), standard);
50         
51         Kumu::Result_t r = state->mxf_writer.OpenWrite (
52                 mxf->file().string().c_str(),
53                 state->writer_info,
54                 state->picture_descriptor,
55                 16384,
56                 writer->_overwrite
57                 );
58
59         if (ASDCP_FAILURE (r)) {
60                 boost::throw_exception (MXFFileError ("could not open MXF file for writing", mxf->file().string(), r));
61         }
62
63         writer->_started = true;
64 }