summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-25 13:56:25 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-25 13:56:25 +0100
commit5189e5720bd583dbf8a4a4e89c5a1b2e61c6d214 (patch)
tree52eacca8ccc328c0f81864b96c2fc138adba187c /src
parent4ee6786d1c3db04dcc77e511121e5d62d0d595b5 (diff)
Change some uses of frame to sample when talking about audio (#814).
Diffstat (limited to 'src')
-rw-r--r--src/lib/audio_content.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc
index 6cce9536e..a89184de3 100644
--- a/src/lib/audio_content.cc
+++ b/src/lib/audio_content.cc
@@ -292,7 +292,7 @@ AudioContent::add_properties (list<UserProperty>& p) const
if (stream) {
p.push_back (UserProperty (_("Audio"), _("Channels"), stream->channels ()));
- p.push_back (UserProperty (_("Audio"), _("Content audio frame rate"), stream->frame_rate(), _("Hz")));
+ p.push_back (UserProperty (_("Audio"), _("Content audio sample rate"), stream->frame_rate(), _("Hz")));
}
FrameRateChange const frc (_parent->active_video_frame_rate(), _parent->film()->video_frame_rate());
@@ -306,7 +306,7 @@ AudioContent::add_properties (list<UserProperty>& p) const
p.push_back (
UserProperty (
_("Length"),
- _("Full length in audio frames at content rate"),
+ _("Full length in audio samples at content rate"),
c.frames_round (stream->frame_rate ())
)
);
@@ -319,7 +319,7 @@ AudioContent::add_properties (list<UserProperty>& p) const
p.push_back (
UserProperty (
_("Length"),
- _("Full length in audio frames at DCP rate"),
+ _("Full length in audio samples at DCP rate"),
c.frames_round (resampled_frame_rate ())
)
);