Hand-apply 111f02f4fc8ace359a16aea1c88c2821bf3dde31 from master; improve progress...
[dcpomatic.git] / src / lib / ffmpeg_content.cc
1 /*
2     Copyright (C) 2013-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 extern "C" {
21 #include <libavformat/avformat.h>
22 }
23 #include <libcxml/cxml.h>
24 #include <dcp/raw_convert.h>
25 #include "ffmpeg_content.h"
26 #include "ffmpeg_examiner.h"
27 #include "ffmpeg_subtitle_stream.h"
28 #include "ffmpeg_audio_stream.h"
29 #include "compose.hpp"
30 #include "job.h"
31 #include "util.h"
32 #include "filter.h"
33 #include "film.h"
34 #include "log.h"
35 #include "exceptions.h"
36 #include "frame_rate_change.h"
37 #include "safe_stringstream.h"
38
39 #include "i18n.h"
40
41 #define LOG_GENERAL(...) film->log()->log (String::compose (__VA_ARGS__), Log::TYPE_GENERAL);
42
43 using std::string;
44 using std::vector;
45 using std::list;
46 using std::cout;
47 using std::pair;
48 using boost::shared_ptr;
49 using boost::dynamic_pointer_cast;
50 using dcp::raw_convert;
51
52 int const FFmpegContentProperty::SUBTITLE_STREAMS = 100;
53 int const FFmpegContentProperty::SUBTITLE_STREAM = 101;
54 int const FFmpegContentProperty::AUDIO_STREAMS = 102;
55 int const FFmpegContentProperty::AUDIO_STREAM = 103;
56 int const FFmpegContentProperty::FILTERS = 104;
57
58 FFmpegContent::FFmpegContent (shared_ptr<const Film> f, boost::filesystem::path p)
59         : Content (f, p)
60         , VideoContent (f, p)
61         , AudioContent (f, p)
62         , SubtitleContent (f, p)
63 {
64
65 }
66
67 FFmpegContent::FFmpegContent (shared_ptr<const Film> f, cxml::ConstNodePtr node, int version, list<string>& notes)
68         : Content (f, node)
69         , VideoContent (f, node, version)
70         , AudioContent (f, node)
71         , SubtitleContent (f, node, version)
72 {
73         list<cxml::NodePtr> c = node->node_children ("SubtitleStream");
74         for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
75                 _subtitle_streams.push_back (shared_ptr<FFmpegSubtitleStream> (new FFmpegSubtitleStream (*i)));
76                 if ((*i)->optional_number_child<int> ("Selected")) {
77                         _subtitle_stream = _subtitle_streams.back ();
78                 }
79         }
80
81         c = node->node_children ("AudioStream");
82         for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
83                 _audio_streams.push_back (shared_ptr<FFmpegAudioStream> (new FFmpegAudioStream (*i, version)));
84                 if ((*i)->optional_number_child<int> ("Selected")) {
85                         _audio_stream = _audio_streams.back ();
86                 }
87         }
88
89         c = node->node_children ("Filter");
90         for (list<cxml::NodePtr>::iterator i = c.begin(); i != c.end(); ++i) {
91                 Filter const * f = Filter::from_id ((*i)->content ());
92                 if (f) {
93                         _filters.push_back (f);
94                 } else {
95                         notes.push_back (String::compose (_("DCP-o-matic no longer supports the `%1' filter, so it has been turned off."), (*i)->content()));
96                 }
97         }
98
99         _first_video = node->optional_number_child<double> ("FirstVideo");
100 }
101
102 FFmpegContent::FFmpegContent (shared_ptr<const Film> f, vector<boost::shared_ptr<Content> > c)
103         : Content (f, c)
104         , VideoContent (f, c)
105         , AudioContent (f, c)
106         , SubtitleContent (f, c)
107 {
108         shared_ptr<FFmpegContent> ref = dynamic_pointer_cast<FFmpegContent> (c[0]);
109         DCPOMATIC_ASSERT (ref);
110
111         for (size_t i = 0; i < c.size(); ++i) {
112                 shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c[i]);
113                 if (fc->use_subtitles() && *(fc->_subtitle_stream.get()) != *(ref->_subtitle_stream.get())) {
114                         throw JoinError (_("Content to be joined must use the same subtitle stream."));
115                 }
116
117                 if (*(fc->_audio_stream.get()) != *(ref->_audio_stream.get())) {
118                         throw JoinError (_("Content to be joined must use the same audio stream."));
119                 }
120         }
121
122         _subtitle_streams = ref->subtitle_streams ();
123         _subtitle_stream = ref->subtitle_stream ();
124         _audio_streams = ref->audio_streams ();
125         _audio_stream = ref->audio_stream ();
126         _first_video = ref->_first_video;
127 }
128
129 void
130 FFmpegContent::as_xml (xmlpp::Node* node) const
131 {
132         node->add_child("Type")->add_child_text ("FFmpeg");
133         Content::as_xml (node);
134         VideoContent::as_xml (node);
135         AudioContent::as_xml (node);
136         SubtitleContent::as_xml (node);
137
138         boost::mutex::scoped_lock lm (_mutex);
139
140         for (vector<shared_ptr<FFmpegSubtitleStream> >::const_iterator i = _subtitle_streams.begin(); i != _subtitle_streams.end(); ++i) {
141                 xmlpp::Node* t = node->add_child("SubtitleStream");
142                 if (_subtitle_stream && *i == _subtitle_stream) {
143                         t->add_child("Selected")->add_child_text("1");
144                 }
145                 (*i)->as_xml (t);
146         }
147
148         for (vector<shared_ptr<FFmpegAudioStream> >::const_iterator i = _audio_streams.begin(); i != _audio_streams.end(); ++i) {
149                 xmlpp::Node* t = node->add_child("AudioStream");
150                 if (_audio_stream && *i == _audio_stream) {
151                         t->add_child("Selected")->add_child_text("1");
152                 }
153                 (*i)->as_xml (t);
154         }
155
156         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
157                 node->add_child("Filter")->add_child_text ((*i)->id ());
158         }
159
160         if (_first_video) {
161                 node->add_child("FirstVideo")->add_child_text (raw_convert<string> (_first_video.get().get()));
162         }
163 }
164
165 void
166 FFmpegContent::examine (shared_ptr<Job> job, bool calculate_digest)
167 {
168         job->set_progress_unknown ();
169
170         Content::examine (job, calculate_digest);
171
172         shared_ptr<FFmpegExaminer> examiner (new FFmpegExaminer (shared_from_this (), job));
173         take_from_video_examiner (examiner);
174
175         shared_ptr<const Film> film = _film.lock ();
176         DCPOMATIC_ASSERT (film);
177
178         {
179                 boost::mutex::scoped_lock lm (_mutex);
180
181                 _subtitle_streams = examiner->subtitle_streams ();
182                 if (!_subtitle_streams.empty ()) {
183                         _subtitle_stream = _subtitle_streams.front ();
184                 }
185                 
186                 _audio_streams = examiner->audio_streams ();
187                 if (!_audio_streams.empty ()) {
188                         _audio_stream = _audio_streams.front ();
189                 }
190
191                 _first_video = examiner->first_video ();
192         }
193
194         signal_changed (FFmpegContentProperty::SUBTITLE_STREAMS);
195         signal_changed (FFmpegContentProperty::SUBTITLE_STREAM);
196         signal_changed (FFmpegContentProperty::AUDIO_STREAMS);
197         signal_changed (FFmpegContentProperty::AUDIO_STREAM);
198         signal_changed (AudioContentProperty::AUDIO_CHANNELS);
199 }
200
201 string
202 FFmpegContent::summary () const
203 {
204         /* Get the string() here so that the name does not have quotes around it */
205         return String::compose (_("%1 [movie]"), path_summary ());
206 }
207
208 string
209 FFmpegContent::technical_summary () const
210 {
211         string as = "none";
212         if (_audio_stream) {
213                 as = _audio_stream->technical_summary ();
214         }
215
216         string ss = "none";
217         if (_subtitle_stream) {
218                 ss = _subtitle_stream->technical_summary ();
219         }
220
221         string filt = Filter::ffmpeg_string (_filters);
222         
223         return Content::technical_summary() + " - "
224                 + VideoContent::technical_summary() + " - "
225                 + AudioContent::technical_summary() + " - "
226                 + String::compose (
227                         "ffmpeg: audio %1, subtitle %2, filters %3", as, ss, filt
228                         );
229 }
230
231 void
232 FFmpegContent::set_subtitle_stream (shared_ptr<FFmpegSubtitleStream> s)
233 {
234         {
235                 boost::mutex::scoped_lock lm (_mutex);
236                 _subtitle_stream = s;
237         }
238
239         signal_changed (FFmpegContentProperty::SUBTITLE_STREAM);
240 }
241
242 void
243 FFmpegContent::set_audio_stream (shared_ptr<FFmpegAudioStream> s)
244 {
245         {
246                 boost::mutex::scoped_lock lm (_mutex);
247                 _audio_stream = s;
248         }
249
250         signal_changed (FFmpegContentProperty::AUDIO_STREAM);
251 }
252
253 ContentTime
254 FFmpegContent::audio_length () const
255 {
256         if (!audio_stream ()) {
257                 return ContentTime ();
258         }
259
260         return video_length ();
261 }
262
263 int
264 FFmpegContent::audio_channels () const
265 {
266         boost::mutex::scoped_lock lm (_mutex);
267         
268         if (!_audio_stream) {
269                 return 0;
270         }
271
272         return _audio_stream->channels ();
273 }
274
275 int
276 FFmpegContent::audio_frame_rate () const
277 {
278         boost::mutex::scoped_lock lm (_mutex);
279
280         if (!_audio_stream) {
281                 return 0;
282         }
283
284         return _audio_stream->frame_rate ();
285 }
286
287 bool
288 operator== (FFmpegStream const & a, FFmpegStream const & b)
289 {
290         return a._id == b._id;
291 }
292
293 bool
294 operator!= (FFmpegStream const & a, FFmpegStream const & b)
295 {
296         return a._id != b._id;
297 }
298
299 DCPTime
300 FFmpegContent::full_length () const
301 {
302         shared_ptr<const Film> film = _film.lock ();
303         DCPOMATIC_ASSERT (film);
304         return DCPTime (video_length_after_3d_combine(), FrameRateChange (video_frame_rate (), film->video_frame_rate ()));
305 }
306
307 AudioMapping
308 FFmpegContent::audio_mapping () const
309 {
310         boost::mutex::scoped_lock lm (_mutex);
311
312         if (!_audio_stream) {
313                 return AudioMapping ();
314         }
315
316         return _audio_stream->mapping ();
317 }
318
319 void
320 FFmpegContent::set_filters (vector<Filter const *> const & filters)
321 {
322         {
323                 boost::mutex::scoped_lock lm (_mutex);
324                 _filters = filters;
325         }
326
327         signal_changed (FFmpegContentProperty::FILTERS);
328 }
329
330 void
331 FFmpegContent::set_audio_mapping (AudioMapping m)
332 {
333         audio_stream()->set_mapping (m);
334         AudioContent::set_audio_mapping (m);
335 }
336
337 string
338 FFmpegContent::identifier () const
339 {
340         SafeStringStream s;
341
342         s << VideoContent::identifier();
343
344         boost::mutex::scoped_lock lm (_mutex);
345
346         if (_subtitle_stream) {
347                 s << "_" << _subtitle_stream->identifier ();
348         }
349
350         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
351                 s << "_" << (*i)->id ();
352         }
353
354         return s.str ();
355 }
356
357 boost::filesystem::path
358 FFmpegContent::audio_analysis_path () const
359 {
360         shared_ptr<const Film> film = _film.lock ();
361         if (!film) {
362                 return boost::filesystem::path ();
363         }
364
365         /* We need to include the stream ID in this path so that we get different
366            analyses for each stream.
367         */
368
369         boost::filesystem::path p = film->audio_analysis_dir ();
370         string name = digest().get_value_or ("X");
371         if (audio_stream ()) {
372                 name += "_" + audio_stream()->identifier ();
373         }
374         p /= name;
375         return p;
376 }
377
378 list<ContentTimePeriod>
379 FFmpegContent::subtitles_during (ContentTimePeriod period, bool starting) const
380 {
381         list<ContentTimePeriod> d;
382         
383         shared_ptr<FFmpegSubtitleStream> stream = subtitle_stream ();
384         if (!stream) {
385                 return d;
386         }
387
388         /* XXX: inefficient */
389         for (vector<ContentTimePeriod>::const_iterator i = stream->periods.begin(); i != stream->periods.end(); ++i) {
390                 if ((starting && period.contains (i->from)) || (!starting && period.overlaps (*i))) {
391                         d.push_back (*i);
392                 }
393         }
394
395         return d;
396 }
397
398 bool
399 FFmpegContent::has_subtitles () const
400 {
401         return !subtitle_streams().empty ();
402 }