0623aa6f054748f9f56cada8573b736a7ce30e79
[dcpomatic.git] / src / lib / sndfile_content.h
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 extern "C" {
21 #include <libavutil/audioconvert.h>
22 }
23 #include "audio_content.h"
24
25 namespace cxml {
26         class Node;
27 }
28
29 class SndfileContent : public AudioContent
30 {
31 public:
32         SndfileContent (boost::filesystem::path);
33         SndfileContent (boost::shared_ptr<const cxml::Node>);
34
35         boost::shared_ptr<SndfileContent> shared_from_this () {
36                 return boost::dynamic_pointer_cast<SndfileContent> (Content::shared_from_this ());
37         }
38         
39         void examine (boost::shared_ptr<Film>, boost::shared_ptr<Job>, bool);
40         std::string summary () const;
41         std::string information () const;
42         void as_xml (xmlpp::Node *) const;
43         boost::shared_ptr<Content> clone () const;
44         Time length (boost::shared_ptr<const Film>) const;
45
46         /* AudioContent */
47         int audio_channels () const {
48                 boost::mutex::scoped_lock lm (_mutex);
49                 return _audio_channels;
50         }
51         
52         ContentAudioFrame audio_length () const {
53                 boost::mutex::scoped_lock lm (_mutex);
54                 return _audio_length;
55         }
56         
57         int content_audio_frame_rate () const {
58                 boost::mutex::scoped_lock lm (_mutex);
59                 return _audio_frame_rate;
60         }
61
62         int output_audio_frame_rate (boost::shared_ptr<const Film>) const;
63         
64         static bool valid_file (boost::filesystem::path);
65
66 private:
67         int _audio_channels;
68         ContentAudioFrame _audio_length;
69         int _audio_frame_rate;
70 };