Try to fix build.
[dcpomatic.git] / src / lib / audio_content.cc
index 61357c60f48922b3637328bd1fb3eb749f6b4525..53160fdb0949b786cb99c2fdf8078cf8dd802839 100644 (file)
@@ -25,8 +25,8 @@
 #include "config.h"
 #include "frame_rate_change.h"
 #include "audio_processor.h"
+#include "raw_convert.h"
 #include <libcxml/cxml.h>
-#include <dcp/raw_convert.h>
 
 #include "i18n.h"
 
@@ -38,7 +38,6 @@ using std::fixed;
 using std::setprecision;
 using boost::shared_ptr;
 using boost::dynamic_pointer_cast;
-using dcp::raw_convert;
 
 int const AudioContentProperty::AUDIO_CHANNELS = 200;
 int const AudioContentProperty::AUDIO_LENGTH = 201;
@@ -181,7 +180,7 @@ AudioContent::audio_analysis_path () const
        }
 
        boost::filesystem::path p = film->audio_analysis_dir ();
-       p /= digest().get_value_or ("X") + "_" + audio_mapping().digest();
+       p /= digest() + "_" + audio_mapping().digest();
        return p;
 }