Merge FilmState / Film.
[dcpomatic.git] / src / lib / make_dcp_job.cc
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 /** @file src/make_dcp_job.cc
21  *  @brief A job to create DCPs.
22  */
23
24 #include <boost/filesystem.hpp>
25 #include <libdcp/dcp.h>
26 #include <libdcp/picture_asset.h>
27 #include <libdcp/sound_asset.h>
28 #include <libdcp/reel.h>
29 extern "C" {
30 #include <libavutil/pixdesc.h>
31 }
32 #include "make_dcp_job.h"
33 #include "dcp_content_type.h"
34 #include "exceptions.h"
35 #include "options.h"
36 #include "imagemagick_decoder.h"
37 #include "film.h"
38
39 using namespace std;
40 using namespace boost;
41
42 /** @param f Film we are making the DCP for.
43  *  @param o Options.
44  */
45 MakeDCPJob::MakeDCPJob (shared_ptr<Film> f, shared_ptr<const Options> o, shared_ptr<Job> req)
46         : Job (f, req)
47         , _opt (o)
48 {
49         
50 }
51
52 string
53 MakeDCPJob::name () const
54 {
55         return String::compose ("Make DCP for %1", _film->name());
56 }
57
58 string
59 MakeDCPJob::j2c_path (int f) const
60 {
61         return _opt->frame_out_path (f, false);
62 }
63
64 string
65 MakeDCPJob::wav_path (libdcp::Channel c) const
66 {
67         return _opt->multichannel_audio_out_path (int (c), false);
68 }
69
70 void
71 MakeDCPJob::run ()
72 {
73         string const dcp_path = _film->dir (_film->dcp_name());
74
75         /* Remove any old DCP */
76         filesystem::remove_all (dcp_path);
77
78         int frames = 0;
79         switch (_film->content_type ()) {
80         case VIDEO:
81                 frames = _film->dcp_length ();
82                 break;
83         case STILL:
84                 frames = _film->still_duration() * ImageMagickDecoder::static_frames_per_second ();
85                 break;
86         }
87         
88         libdcp::DCP dcp (_film->dir (_film->dcp_name()));
89         dcp.Progress.connect (sigc::mem_fun (*this, &MakeDCPJob::dcp_progress));
90
91         shared_ptr<libdcp::CPL> cpl (
92                 new libdcp::CPL (_film->dir (_film->dcp_name()), _film->dcp_name(), _film->dcp_content_type()->libdcp_kind (), frames, rint (_film->frames_per_second()))
93                 );
94         
95         dcp.add_cpl (cpl);
96
97         descend (0.9);
98         shared_ptr<libdcp::MonoPictureAsset> pa (
99                 new libdcp::MonoPictureAsset (
100                         sigc::mem_fun (*this, &MakeDCPJob::j2c_path),
101                         _film->dir (_film->dcp_name()),
102                         "video.mxf",
103                         &dcp.Progress,
104                         rint (_film->frames_per_second()),
105                         frames,
106                         _opt->out_size.width,
107                         _opt->out_size.height
108                         )
109                 );
110         
111         ascend ();
112
113         shared_ptr<libdcp::SoundAsset> sa;
114
115         if (_film->audio_channels() > 0) {
116                 descend (0.1);
117                 sa.reset (
118                         new libdcp::SoundAsset (
119                                 sigc::mem_fun (*this, &MakeDCPJob::wav_path),
120                                 _film->dir (_film->dcp_name()),
121                                 "audio.mxf",
122                                 &dcp.Progress,
123                                 rint (_film->frames_per_second()),
124                                 frames,
125                                 _film->audio_channels()
126                                 )
127                         );
128                 ascend ();
129         }
130
131         cpl->add_reel (shared_ptr<libdcp::Reel> (new libdcp::Reel (pa, sa, shared_ptr<libdcp::SubtitleAsset> ())));
132         dcp.write_xml ();
133
134         set_progress (1);
135         set_state (FINISHED_OK);
136 }
137
138 void
139 MakeDCPJob::dcp_progress (float p)
140 {
141         set_progress (p);
142 }