GPL boilerplates.
[dcpomatic.git] / src / lib / sndfile_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 "sndfile_content.h"
21 #include "compose.hpp"
22
23 #include "i18n.h"
24
25 using std::string;
26 using boost::shared_ptr;
27
28 SndfileContent::SndfileContent (boost::filesystem::path f)
29         : Content (f)
30         , AudioContent (f)
31 {
32
33 }
34
35 SndfileContent::SndfileContent (shared_ptr<const cxml::Node> node)
36         : Content (node)
37         , AudioContent (node)
38                    
39 {
40
41 }
42
43 string
44 SndfileContent::summary () const
45 {
46         return String::compose (_("Sound file: %1"), file().filename ());
47 }
48
49 string
50 SndfileContent::information () const
51 {
52         return "";
53 }
54
55 int
56 SndfileContent::audio_channels () const
57 {
58         /* XXX */
59         return 0;
60 }
61
62 ContentAudioFrame
63 SndfileContent::audio_length () const
64 {
65         /* XXX */
66         return 0;
67 }
68
69 int
70 SndfileContent::audio_frame_rate () const
71 {
72         /* XXX */
73         return 0;
74 }
75
76 int64_t
77 SndfileContent::audio_channel_layout () const
78 {
79         /* XXX */
80         return 0;
81 }
82         
83
84 bool
85 SndfileContent::valid_file (boost::filesystem::path f)
86 {
87         /* XXX: more extensions */
88         string ext = f.extension().string();
89         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
90         return (ext == ".wav" || ext == ".aif" || ext == ".aiff");
91 }
92
93 shared_ptr<Content>
94 SndfileContent::clone () const
95 {
96         return shared_ptr<Content> (new SndfileContent (*this));
97 }