7c204e9eb125a486691f66abd4e600d71d46c5bd
[dcpomatic.git] / src / lib / sndfile_content.cc
1 /*
2     Copyright (C) 2013-2016 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 "sndfile_content.h"
21 #include "sndfile_decoder.h"
22 #include "sndfile_examiner.h"
23 #include "audio_content.h"
24 #include "film.h"
25 #include "compose.hpp"
26 #include "job.h"
27 #include "util.h"
28 #include "safe_stringstream.h"
29 #include "raw_convert.h"
30 #include <libcxml/cxml.h>
31 #include <libxml++/libxml++.h>
32 #include <iostream>
33
34 #include "i18n.h"
35
36 using std::string;
37 using std::cout;
38 using std::vector;
39 using boost::shared_ptr;
40
41 SndfileContent::SndfileContent (shared_ptr<const Film> film, boost::filesystem::path p)
42         : Content (film, p)
43 {
44         audio.reset (new AudioContent (this, film));
45 }
46
47 SndfileContent::SndfileContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
48         : Content (film, node)
49         , _audio_length (node->number_child<Frame> ("AudioLength"))
50 {
51         audio = AudioContent::from_xml (this, film, node);
52         audio->set_stream (
53                 AudioStreamPtr (
54                         new AudioStream (node->number_child<int> ("AudioFrameRate"), AudioMapping (node->node_child ("AudioMapping"), version)))
55                 );
56 }
57
58 void
59 SndfileContent::as_xml (xmlpp::Node* node) const
60 {
61         node->add_child("Type")->add_child_text ("Sndfile");
62         Content::as_xml (node);
63         audio->as_xml (node);
64         node->add_child("AudioFrameRate")->add_child_text (raw_convert<string> (audio->stream()->frame_rate ()));
65         audio->stream()->mapping().as_xml (node->add_child("AudioMapping"));
66         node->add_child("AudioLength")->add_child_text (raw_convert<string> (audio_length ()));
67 }
68
69
70 string
71 SndfileContent::summary () const
72 {
73         /* Get the string() here so that the name does not have quotes around it */
74         return String::compose (_("%1 [audio]"), path_summary ());
75 }
76
77 string
78 SndfileContent::technical_summary () const
79 {
80         return Content::technical_summary() + " - "
81                 + audio->technical_summary ()
82                 + " - sndfile";
83 }
84
85 bool
86 SndfileContent::valid_file (boost::filesystem::path f)
87 {
88         /* XXX: more extensions */
89         string ext = f.extension().string();
90         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
91         return (ext == ".wav" || ext == ".w64" || ext == ".flac" || ext == ".aif" || ext == ".aiff");
92 }
93
94 void
95 SndfileContent::examine (shared_ptr<Job> job)
96 {
97         job->set_progress_unknown ();
98         Content::examine (job);
99         shared_ptr<AudioExaminer> ex (new SndfileExaminer (shared_from_this ()));
100
101         {
102                 boost::mutex::scoped_lock lm (_mutex);
103                 AudioStreamPtr as (new AudioStream (ex->audio_frame_rate(), ex->audio_channels ()));
104                 audio->set_stream (as);
105                 AudioMapping m = as->mapping ();
106                 film()->make_audio_mapping_default (m);
107                 as->set_mapping (m);
108                 _audio_length = ex->audio_length ();
109         }
110
111         signal_changed (AudioContentProperty::STREAMS);
112 }
113
114 DCPTime
115 SndfileContent::full_length () const
116 {
117         FrameRateChange const frc (active_video_frame_rate(), film()->video_frame_rate());
118         return DCPTime::from_frames (audio_length() / frc.speed_up, audio->stream()->frame_rate ());
119 }