Change some uses of frame to sample when talking about audio (#814).
authorCarl Hetherington <cth@carlh.net>
Wed, 25 May 2016 12:56:25 +0000 (13:56 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 25 May 2016 12:56:25 +0000 (13:56 +0100)
src/lib/audio_content.cc

index 6cce9536e4170f05446fa5765ce28f593f232335..a89184de3a8848e60cf6d0cff652873a6fe3622a 100644 (file)
@@ -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 ())
                                )
                        );