2a42833535db640736b85ee155f58c1ab3733fd0
[dcpomatic.git] / src / lib / ffmpeg_content.cc
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
5
6     This program 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     This program 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 this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21
22 #include <libcxml/cxml.h>
23 #include "ffmpeg_content.h"
24 #include "ffmpeg_decoder.h"
25 #include "compose.hpp"
26 #include "job.h"
27 #include "util.h"
28 #include "log.h"
29
30 #include "i18n.h"
31
32 using std::string;
33 using std::stringstream;
34 using std::vector;
35 using std::list;
36 using std::cout;
37 using boost::shared_ptr;
38 using boost::lexical_cast;
39
40 int const FFmpegContentProperty::SUBTITLE_STREAMS = 100;
41 int const FFmpegContentProperty::SUBTITLE_STREAM = 101;
42 int const FFmpegContentProperty::AUDIO_STREAMS = 102;
43 int const FFmpegContentProperty::AUDIO_STREAM = 103;
44
45 FFmpegContent::FFmpegContent (boost::filesystem::path f)
46         : Content (f)
47         , VideoContent (f)
48         , AudioContent (f)
49 {
50
51 }
52
53 FFmpegContent::FFmpegContent (shared_ptr<const cxml::Node> node)
54         : Content (node)
55         , VideoContent (node)
56         , AudioContent (node)
57 {
58         list<shared_ptr<cxml::Node> > c = node->node_children ("SubtitleStream");
59         for (list<shared_ptr<cxml::Node> >::const_iterator i = c.begin(); i != c.end(); ++i) {
60                 _subtitle_streams.push_back (shared_ptr<FFmpegSubtitleStream> (new FFmpegSubtitleStream (*i)));
61                 if ((*i)->optional_number_child<int> ("Selected")) {
62                         _subtitle_stream = _subtitle_streams.back ();
63                 }
64         }
65
66         c = node->node_children ("AudioStream");
67         for (list<shared_ptr<cxml::Node> >::const_iterator i = c.begin(); i != c.end(); ++i) {
68                 _audio_streams.push_back (shared_ptr<FFmpegAudioStream> (new FFmpegAudioStream (*i)));
69                 if ((*i)->optional_number_child<int> ("Selected")) {
70                         _audio_stream = _audio_streams.back ();
71                 }
72         }
73 }
74
75 FFmpegContent::FFmpegContent (FFmpegContent const & o)
76         : Content (o)
77         , VideoContent (o)
78         , AudioContent (o)
79         , _subtitle_streams (o._subtitle_streams)
80         , _subtitle_stream (o._subtitle_stream)
81         , _audio_streams (o._audio_streams)
82         , _audio_stream (o._audio_stream)
83 {
84
85 }
86
87 void
88 FFmpegContent::as_xml (xmlpp::Node* node) const
89 {
90         node->add_child("Type")->add_child_text ("FFmpeg");
91         Content::as_xml (node);
92         VideoContent::as_xml (node);
93         AudioContent::as_xml (node);
94
95         boost::mutex::scoped_lock lm (_mutex);
96
97         for (vector<shared_ptr<FFmpegSubtitleStream> >::const_iterator i = _subtitle_streams.begin(); i != _subtitle_streams.end(); ++i) {
98                 xmlpp::Node* t = node->add_child("SubtitleStream");
99                 if (_subtitle_stream && *i == _subtitle_stream) {
100                         t->add_child("Selected")->add_child_text("1");
101                 }
102                 (*i)->as_xml (t);
103         }
104
105         for (vector<shared_ptr<FFmpegAudioStream> >::const_iterator i = _audio_streams.begin(); i != _audio_streams.end(); ++i) {
106                 xmlpp::Node* t = node->add_child("AudioStream");
107                 if (_audio_stream && *i == _audio_stream) {
108                         t->add_child("Selected")->add_child_text("1");
109                 }
110                 (*i)->as_xml (t);
111         }
112 }
113
114 void
115 FFmpegContent::examine (shared_ptr<Film> film, shared_ptr<Job> job)
116 {
117         job->set_progress_unknown ();
118
119         Content::examine (film, job);
120
121         shared_ptr<FFmpegDecoder> decoder (new FFmpegDecoder (film, shared_from_this (), true, false, false));
122
123         ContentVideoFrame video_length = 0;
124         video_length = decoder->video_length ();
125         film->log()->log (String::compose ("Video length obtained from header as %1 frames", decoder->video_length ()));
126
127         {
128                 boost::mutex::scoped_lock lm (_mutex);
129
130                 _video_length = video_length;
131
132                 _subtitle_streams = decoder->subtitle_streams ();
133                 if (!_subtitle_streams.empty ()) {
134                         _subtitle_stream = _subtitle_streams.front ();
135                 }
136                 
137                 _audio_streams = decoder->audio_streams ();
138                 if (!_audio_streams.empty ()) {
139                         _audio_stream = _audio_streams.front ();
140                 }
141         }
142
143         take_from_video_decoder (decoder);
144
145         signal_changed (VideoContentProperty::VIDEO_LENGTH);
146         signal_changed (FFmpegContentProperty::SUBTITLE_STREAMS);
147         signal_changed (FFmpegContentProperty::SUBTITLE_STREAM);
148         signal_changed (FFmpegContentProperty::AUDIO_STREAMS);
149         signal_changed (FFmpegContentProperty::AUDIO_STREAM);
150         signal_changed (AudioContentProperty::AUDIO_CHANNELS);
151 }
152
153 string
154 FFmpegContent::summary () const
155 {
156         return String::compose (_("Movie: %1"), file().filename().string());
157 }
158
159 string
160 FFmpegContent::information () const
161 {
162         if (video_length() == 0 || video_frame_rate() == 0) {
163                 return "";
164         }
165         
166         stringstream s;
167         
168         s << String::compose (_("%1 frames; %2 frames per second"), video_length(), video_frame_rate()) << "\n";
169         s << VideoContent::information ();
170
171         return s.str ();
172 }
173
174 void
175 FFmpegContent::set_subtitle_stream (shared_ptr<FFmpegSubtitleStream> s)
176 {
177         {
178                 boost::mutex::scoped_lock lm (_mutex);
179                 _subtitle_stream = s;
180         }
181
182         signal_changed (FFmpegContentProperty::SUBTITLE_STREAM);
183 }
184
185 void
186 FFmpegContent::set_audio_stream (shared_ptr<FFmpegAudioStream> s)
187 {
188         {
189                 boost::mutex::scoped_lock lm (_mutex);
190                 _audio_stream = s;
191         }
192
193         signal_changed (FFmpegContentProperty::AUDIO_STREAM);
194 }
195
196 ContentAudioFrame
197 FFmpegContent::audio_length () const
198 {
199         int const cafr = content_audio_frame_rate ();
200         int const vfr  = video_frame_rate ();
201         ContentVideoFrame const vl = video_length ();
202
203         boost::mutex::scoped_lock lm (_mutex);
204         if (!_audio_stream) {
205                 return 0;
206         }
207         
208         return video_frames_to_audio_frames (vl, cafr, vfr);
209 }
210
211 int
212 FFmpegContent::audio_channels () const
213 {
214         boost::mutex::scoped_lock lm (_mutex);
215         
216         if (!_audio_stream) {
217                 return 0;
218         }
219
220         return _audio_stream->channels;
221 }
222
223 int
224 FFmpegContent::content_audio_frame_rate () const
225 {
226         boost::mutex::scoped_lock lm (_mutex);
227
228         if (!_audio_stream) {
229                 return 0;
230         }
231
232         return _audio_stream->frame_rate;
233 }
234
235 int
236 FFmpegContent::output_audio_frame_rate (shared_ptr<const Film> film) const
237 {
238         /* Resample to a DCI-approved sample rate */
239         double t = dcp_audio_frame_rate (content_audio_frame_rate ());
240
241         FrameRateConversion frc (video_frame_rate(), film->dcp_video_frame_rate());
242
243         /* Compensate if the DCP is being run at a different frame rate
244            to the source; that is, if the video is run such that it will
245            look different in the DCP compared to the source (slower or faster).
246            skip/repeat doesn't come into effect here.
247         */
248
249         if (frc.change_speed) {
250                 t *= video_frame_rate() * frc.factor() / film->dcp_video_frame_rate();
251         }
252
253         return rint (t);
254 }
255
256 bool
257 operator== (FFmpegSubtitleStream const & a, FFmpegSubtitleStream const & b)
258 {
259         return a.id == b.id;
260 }
261
262 bool
263 operator== (FFmpegAudioStream const & a, FFmpegAudioStream const & b)
264 {
265         return a.id == b.id;
266 }
267
268 FFmpegAudioStream::FFmpegAudioStream (shared_ptr<const cxml::Node> node)
269 {
270         name = node->string_child ("Name");
271         id = node->number_child<int> ("Id");
272         frame_rate = node->number_child<int> ("FrameRate");
273         channels = node->number_child<int64_t> ("Channels");
274         mapping = AudioMapping (node->node_child ("Mapping"));
275 }
276
277 void
278 FFmpegAudioStream::as_xml (xmlpp::Node* root) const
279 {
280         root->add_child("Name")->add_child_text (name);
281         root->add_child("Id")->add_child_text (lexical_cast<string> (id));
282         root->add_child("FrameRate")->add_child_text (lexical_cast<string> (frame_rate));
283         root->add_child("Channels")->add_child_text (lexical_cast<string> (channels));
284         mapping.as_xml (root->add_child("Mapping"));
285 }
286
287 /** Construct a SubtitleStream from a value returned from to_string().
288  *  @param t String returned from to_string().
289  *  @param v State file version.
290  */
291 FFmpegSubtitleStream::FFmpegSubtitleStream (shared_ptr<const cxml::Node> node)
292 {
293         name = node->string_child ("Name");
294         id = node->number_child<int> ("Id");
295 }
296
297 void
298 FFmpegSubtitleStream::as_xml (xmlpp::Node* root) const
299 {
300         root->add_child("Name")->add_child_text (name);
301         root->add_child("Id")->add_child_text (lexical_cast<string> (id));
302 }
303
304 shared_ptr<Content>
305 FFmpegContent::clone () const
306 {
307         return shared_ptr<Content> (new FFmpegContent (*this));
308 }
309
310 Time
311 FFmpegContent::length (shared_ptr<const Film> film) const
312 {
313         FrameRateConversion frc (video_frame_rate (), film->dcp_video_frame_rate ());
314         return video_length() * frc.factor() * TIME_HZ / film->dcp_video_frame_rate ();
315 }
316
317 AudioMapping
318 FFmpegContent::audio_mapping () const
319 {
320         boost::mutex::scoped_lock lm (_mutex);
321
322         if (!_audio_stream) {
323                 return AudioMapping ();
324         }
325
326         return _audio_stream->mapping;
327 }
328