No-op: remove all trailing whitespace.
[dcpomatic.git] / src / wx / content_properties_dialog.cc
index 45593fd5b84921982d4658e948d7c5d19a50762a..7fb0cccbab2e42962a281c685148bcb851a8bfeb 100644 (file)
@@ -23,6 +23,7 @@
 #include "lib/content.h"
 #include "lib/video_content.h"
 #include "lib/audio_content.h"
+#include "lib/single_stream_audio_content.h"
 #include <boost/algorithm/string.hpp>
 
 using std::string;
@@ -52,18 +53,16 @@ ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr<C
                        );
        }
 
-       shared_ptr<AudioContent> audio = dynamic_pointer_cast<AudioContent> (content);
-       if (audio) {
+       /* XXX: this could be better wrt audio streams */
+
+       shared_ptr<SingleStreamAudioContent> single = dynamic_pointer_cast<SingleStreamAudioContent> (content);
+       if (single) {
                add_property (
                        _("Audio channels"),
-                       std_to_wx (raw_convert<string> (audio->audio_channels ()))
-                       );
-               add_property (
-                       _("Audio length"),
-                       std_to_wx (raw_convert<string> (audio->audio_length())) + " " + _("audio frames")
+                       std_to_wx (raw_convert<string> (single->audio_stream()->channels ()))
                        );
        }
-       
+
        layout ();
 }