summaryrefslogtreecommitdiff
path: root/src/lib/single_stream_audio_content.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/single_stream_audio_content.cc')
-rw-r--r--src/lib/single_stream_audio_content.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/single_stream_audio_content.cc b/src/lib/single_stream_audio_content.cc
index 4c59420cb..b3c74d901 100644
--- a/src/lib/single_stream_audio_content.cc
+++ b/src/lib/single_stream_audio_content.cc
@@ -88,6 +88,8 @@ SingleStreamAudioContent::audio_streams () const
void
SingleStreamAudioContent::add_properties (list<pair<string, string> >& p) const
{
- /* XXX: this could be better wrt audio streams */
p.push_back (make_pair (_("Audio channels"), raw_convert<string> (audio_stream()->channels ())));
+ p.push_back (make_pair (_("Content audio frame rate"), raw_convert<string> (audio_stream()->frame_rate ())));
+
+ AudioContent::add_properties (p);
}