Try to stop crashes when tests are torn down.
[dcpomatic.git] / src / lib / dcp_encoder.cc
1 /*
2     Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/dcp_encoder.cc
22  *  @brief A class which takes a Film and some Options, then uses those to encode the film into a DCP.
23  *
24  *  A decoder is selected according to the content type, and the encoder can be specified
25  *  as a parameter to the constructor.
26  */
27
28 #include "dcp_encoder.h"
29 #include "j2k_encoder.h"
30 #include "film.h"
31 #include "video_decoder.h"
32 #include "audio_decoder.h"
33 #include "player.h"
34 #include "job.h"
35 #include "writer.h"
36 #include "compose.hpp"
37 #include "referenced_reel_asset.h"
38 #include "subtitle_content.h"
39 #include "player_video.h"
40 #include <boost/signals2.hpp>
41 #include <boost/foreach.hpp>
42 #include <iostream>
43
44 #include "i18n.h"
45
46 using std::string;
47 using std::cout;
48 using std::list;
49 using boost::shared_ptr;
50 using boost::weak_ptr;
51 using boost::dynamic_pointer_cast;
52
53 /** Construct a DCP encoder.
54  *  @param film Film that we are encoding.
55  *  @param job Job that this encoder is being used in.
56  */
57 DCPEncoder::DCPEncoder (shared_ptr<const Film> film, weak_ptr<Job> job)
58         : Encoder (film, job)
59         , _writer (new Writer (film, job))
60         , _j2k_encoder (new J2KEncoder (film, _writer))
61         , _finishing (false)
62         , _non_burnt_subtitles (false)
63 {
64         BOOST_FOREACH (shared_ptr<const Content> c, _film->content ()) {
65                 if (c->subtitle && c->subtitle->use() && !c->subtitle->burn()) {
66                         _non_burnt_subtitles = true;
67                 }
68         }
69 }
70
71 DCPEncoder::~DCPEncoder ()
72 {
73         /* We must stop receiving more video data before we die */
74         _player_video_connection.release ();
75         _player_audio_connection.release ();
76         _player_subtitle_connection.release ();
77 }
78
79 void
80 DCPEncoder::go ()
81 {
82         _writer->start ();
83         _j2k_encoder->begin ();
84
85         {
86                 shared_ptr<Job> job = _job.lock ();
87                 DCPOMATIC_ASSERT (job);
88                 job->sub (_("Encoding"));
89         }
90
91         if (_non_burnt_subtitles) {
92                 _writer->write (_player->get_subtitle_fonts ());
93         }
94
95         while (!_player->pass ()) {}
96
97         BOOST_FOREACH (ReferencedReelAsset i, _player->get_reel_assets ()) {
98                 _writer->write (i);
99         }
100
101         _finishing = true;
102         _j2k_encoder->end ();
103         _writer->finish ();
104 }
105
106 void
107 DCPEncoder::video (shared_ptr<PlayerVideo> data, DCPTime time)
108 {
109         if (!_film->three_d() && data->eyes() == EYES_LEFT) {
110                 /* Use left-eye images for both eyes */
111                 data->set_eyes (EYES_BOTH);
112         }
113
114         _j2k_encoder->encode (data, time);
115 }
116
117 void
118 DCPEncoder::audio (shared_ptr<AudioBuffers> data, DCPTime time)
119 {
120         _writer->write (data);
121
122         shared_ptr<Job> job = _job.lock ();
123         DCPOMATIC_ASSERT (job);
124         job->set_progress (float(time.get()) / _film->length().get());
125 }
126
127 void
128 DCPEncoder::subtitle (PlayerSubtitles data, DCPTimePeriod period)
129 {
130         if (_non_burnt_subtitles) {
131                 _writer->write (data, period);
132         }
133 }
134
135 float
136 DCPEncoder::current_rate () const
137 {
138         return _j2k_encoder->current_encoding_rate ();
139 }
140
141 Frame
142 DCPEncoder::frames_done () const
143 {
144         return _j2k_encoder->video_frames_enqueued ();
145 }