Add basic content information, and some other bits.
[dcpomatic.git] / src / lib / ffmpeg_content.cc
1 /*
2     Copyright (C) 2013 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 #include <libcxml/cxml.h>
21 #include "ffmpeg_content.h"
22 #include "ffmpeg_decoder.h"
23 #include "compose.hpp"
24 #include "job.h"
25 #include "util.h"
26 #include "log.h"
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::stringstream;
32 using std::vector;
33 using std::list;
34 using boost::shared_ptr;
35 using boost::lexical_cast;
36
37 int const FFmpegContentProperty::SUBTITLE_STREAMS = 100;
38 int const FFmpegContentProperty::SUBTITLE_STREAM = 101;
39 int const FFmpegContentProperty::AUDIO_STREAMS = 102;
40 int const FFmpegContentProperty::AUDIO_STREAM = 103;
41
42 FFmpegContent::FFmpegContent (boost::filesystem::path f)
43         : Content (f)
44         , VideoContent (f)
45         , AudioContent (f)
46 {
47
48 }
49
50 FFmpegContent::FFmpegContent (shared_ptr<const cxml::Node> node)
51         : Content (node)
52         , VideoContent (node)
53         , AudioContent (node)
54 {
55         list<shared_ptr<cxml::Node> > c = node->node_children ("SubtitleStream");
56         for (list<shared_ptr<cxml::Node> >::const_iterator i = c.begin(); i != c.end(); ++i) {
57                 _subtitle_streams.push_back (FFmpegSubtitleStream (*i));
58                 if ((*i)->optional_number_child<int> ("Selected")) {
59                         _subtitle_stream = _subtitle_streams.back ();
60                 }
61         }
62
63         c = node->node_children ("AudioStream");
64         for (list<shared_ptr<cxml::Node> >::const_iterator i = c.begin(); i != c.end(); ++i) {
65                 _audio_streams.push_back (FFmpegAudioStream (*i));
66                 if ((*i)->optional_number_child<int> ("Selected")) {
67                         _audio_stream = _audio_streams.back ();
68                 }
69         }
70 }
71
72 FFmpegContent::FFmpegContent (FFmpegContent const & o)
73         : Content (o)
74         , VideoContent (o)
75         , AudioContent (o)
76         , boost::enable_shared_from_this<FFmpegContent> (o)
77         , _subtitle_streams (o._subtitle_streams)
78         , _subtitle_stream (o._subtitle_stream)
79         , _audio_streams (o._audio_streams)
80         , _audio_stream (o._audio_stream)
81 {
82
83 }
84
85 void
86 FFmpegContent::as_xml (xmlpp::Node* node) const
87 {
88         node->add_child("Type")->add_child_text ("FFmpeg");
89         Content::as_xml (node);
90         VideoContent::as_xml (node);
91
92         boost::mutex::scoped_lock lm (_mutex);
93
94         for (vector<FFmpegSubtitleStream>::const_iterator i = _subtitle_streams.begin(); i != _subtitle_streams.end(); ++i) {
95                 xmlpp::Node* t = node->add_child("SubtitleStream");
96                 if (_subtitle_stream && *i == _subtitle_stream.get()) {
97                         t->add_child("Selected")->add_child_text("1");
98                 }
99                 i->as_xml (t);
100         }
101
102         for (vector<FFmpegAudioStream>::const_iterator i = _audio_streams.begin(); i != _audio_streams.end(); ++i) {
103                 xmlpp::Node* t = node->add_child("AudioStream");
104                 if (_audio_stream && *i == _audio_stream.get()) {
105                         t->add_child("Selected")->add_child_text("1");
106                 }
107                 i->as_xml (t);
108         }
109 }
110
111 void
112 FFmpegContent::examine (shared_ptr<Film> film, shared_ptr<Job> job, bool quick)
113 {
114         job->descend (0.5);
115         Content::examine (film, job, quick);
116         job->ascend ();
117
118         job->set_progress_unknown ();
119
120         shared_ptr<FFmpegDecoder> decoder (new FFmpegDecoder (film, shared_from_this (), true, false, false, true));
121
122         ContentVideoFrame video_length = 0;
123         if (quick) {
124                 video_length = decoder->video_length ();
125                 film->log()->log (String::compose ("Video length obtained from header as %1 frames", decoder->video_length ()));
126         } else {
127                 while (!decoder->pass ()) {
128                         /* keep going */
129                 }
130
131                 video_length = decoder->video_frame ();
132                 film->log()->log (String::compose ("Video length examined as %1 frames", decoder->video_frame ()));
133         }
134
135         {
136                 boost::mutex::scoped_lock lm (_mutex);
137
138                 _video_length = video_length;
139
140                 _subtitle_streams = decoder->subtitle_streams ();
141                 if (!_subtitle_streams.empty ()) {
142                         _subtitle_stream = _subtitle_streams.front ();
143                 }
144                 
145                 _audio_streams = decoder->audio_streams ();
146                 if (!_audio_streams.empty ()) {
147                         _audio_stream = _audio_streams.front ();
148                 }
149         }
150
151         take_from_video_decoder (decoder);
152
153         Changed (VideoContentProperty::VIDEO_LENGTH);
154         Changed (FFmpegContentProperty::SUBTITLE_STREAMS);
155         Changed (FFmpegContentProperty::SUBTITLE_STREAM);
156         Changed (FFmpegContentProperty::AUDIO_STREAMS);
157         Changed (FFmpegContentProperty::AUDIO_STREAM);
158 }
159
160 string
161 FFmpegContent::summary () const
162 {
163         return String::compose (_("Movie: %1"), file().filename ());
164 }
165
166 string
167 FFmpegContent::information () const
168 {
169         stringstream s;
170         
171         s << String::compose (_("%1 frames; %2 frames per second"), video_length(), video_frame_rate()) << "\n";
172         s << VideoContent::information ();
173
174         return s.str ();
175 }
176
177 void
178 FFmpegContent::set_subtitle_stream (FFmpegSubtitleStream s)
179 {
180         {
181                 boost::mutex::scoped_lock lm (_mutex);
182                 _subtitle_stream = s;
183         }
184
185         Changed (FFmpegContentProperty::SUBTITLE_STREAM);
186 }
187
188 void
189 FFmpegContent::set_audio_stream (FFmpegAudioStream s)
190 {
191         {
192                 boost::mutex::scoped_lock lm (_mutex);
193                 _audio_stream = s;
194         }
195
196         Changed (FFmpegContentProperty::AUDIO_STREAM);
197 }
198
199 ContentAudioFrame
200 FFmpegContent::audio_length () const
201 {
202         if (!_audio_stream) {
203                 return 0;
204         }
205         
206         return video_frames_to_audio_frames (_video_length, audio_frame_rate(), video_frame_rate());
207 }
208
209 int
210 FFmpegContent::audio_channels () const
211 {
212         if (!_audio_stream) {
213                 return 0;
214         }
215
216         return _audio_stream->channels ();
217 }
218
219 int
220 FFmpegContent::audio_frame_rate () const
221 {
222         if (!_audio_stream) {
223                 return 0;
224         }
225
226         return _audio_stream->frame_rate;
227 }
228
229 int64_t
230 FFmpegContent::audio_channel_layout () const
231 {
232         if (!_audio_stream) {
233                 return 0;
234         }
235
236         return _audio_stream->channel_layout;
237 }
238         
239 bool
240 operator== (FFmpegSubtitleStream const & a, FFmpegSubtitleStream const & b)
241 {
242         return a.id == b.id;
243 }
244
245 bool
246 operator== (FFmpegAudioStream const & a, FFmpegAudioStream const & b)
247 {
248         return a.id == b.id;
249 }
250
251 FFmpegAudioStream::FFmpegAudioStream (shared_ptr<const cxml::Node> node)
252 {
253         name = node->string_child ("Name");
254         id = node->number_child<int> ("Id");
255         frame_rate = node->number_child<int> ("FrameRate");
256         channel_layout = node->number_child<int64_t> ("ChannelLayout");
257 }
258
259 void
260 FFmpegAudioStream::as_xml (xmlpp::Node* root) const
261 {
262         root->add_child("Name")->add_child_text (name);
263         root->add_child("Id")->add_child_text (lexical_cast<string> (id));
264         root->add_child("FrameRate")->add_child_text (lexical_cast<string> (frame_rate));
265         root->add_child("ChannelLayout")->add_child_text (lexical_cast<string> (channel_layout));
266 }
267
268 /** Construct a SubtitleStream from a value returned from to_string().
269  *  @param t String returned from to_string().
270  *  @param v State file version.
271  */
272 FFmpegSubtitleStream::FFmpegSubtitleStream (shared_ptr<const cxml::Node> node)
273 {
274         name = node->string_child ("Name");
275         id = node->number_child<int> ("Id");
276 }
277
278 void
279 FFmpegSubtitleStream::as_xml (xmlpp::Node* root) const
280 {
281         root->add_child("Name")->add_child_text (name);
282         root->add_child("Id")->add_child_text (lexical_cast<string> (id));
283 }
284
285 shared_ptr<Content>
286 FFmpegContent::clone () const
287 {
288         return shared_ptr<Content> (new FFmpegContent (*this));
289 }