From 5189e5720bd583dbf8a4a4e89c5a1b2e61c6d214 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 25 May 2016 13:56:25 +0100 Subject: [PATCH] Change some uses of frame to sample when talking about audio (#814). --- src/lib/audio_content.cc | 6 +++--- 1 file 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& 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& 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& 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 ()) ) ); -- 2.30.2