summaryrefslogtreecommitdiff
path: root/src/lib/sndfile_content.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/sndfile_content.h')
-rw-r--r--src/lib/sndfile_content.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/sndfile_content.h b/src/lib/sndfile_content.h
index 701ff16b2..94f46fea3 100644
--- a/src/lib/sndfile_content.h
+++ b/src/lib/sndfile_content.h
@@ -44,7 +44,7 @@ public:
std::string technical_summary () const;
std::string information () const;
void as_xml (xmlpp::Node *) const;
- Time full_length () const;
+ DCPTime full_length () const;
/* AudioContent */
int audio_channels () const {
@@ -52,7 +52,7 @@ public:
return _audio_channels;
}
- AudioContent::Frame audio_length () const {
+ AudioFrame audio_length () const {
boost::mutex::scoped_lock lm (_mutex);
return _audio_length;
}
@@ -75,7 +75,7 @@ public:
private:
int _audio_channels;
- AudioContent::Frame _audio_length;
+ AudioFrame _audio_length;
int _audio_frame_rate;
AudioMapping _audio_mapping;
};