Runs.
[dcpomatic.git] / src / lib / sndfile_content.cc
1 #include "sndfile_content.h"
2 #include "compose.hpp"
3
4 #include "i18n.h"
5
6 using namespace std;
7
8 string
9 SndfileContent::summary () const
10 {
11         return String::compose (_("Sound file: %1"), file().filename ());
12 }
13
14 int
15 SndfileContent::audio_channels () const
16 {
17         /* XXX */
18         return 0;
19 }
20
21 ContentAudioFrame
22 SndfileContent::audio_length () const
23 {
24         /* XXX */
25         return 0;
26 }
27
28 int
29 SndfileContent::audio_frame_rate () const
30 {
31         /* XXX */
32         return 0;
33 }
34
35 int64_t
36 SndfileContent::audio_channel_layout () const
37 {
38         /* XXX */
39         return 0;
40 }
41