Remove unused code.
[dcpomatic.git] / src / lib / sndfile_content.cc
index 3c377d644f488bc6f6f9f922b68ffd172b3db6b6..e0b7cc10cc19d55932fe1ceffdbb7b2314ef3ea5 100644 (file)
@@ -72,25 +72,6 @@ SndfileContent::technical_summary () const
                + " - sndfile";
 }
 
-string
-SndfileContent::information () const
-{
-       if (_audio_frame_rate == 0) {
-               return "";
-       }
-       
-       SafeStringStream s;
-
-       s << String::compose (
-               _("%1 channels, %2kHz, %3 samples"),
-               audio_channels(),
-               audio_frame_rate() / 1000.0,
-               audio_length().frames (audio_frame_rate ())
-               );
-       
-       return s.str ();
-}
-
 bool
 SndfileContent::valid_file (boost::filesystem::path f)
 {