Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / types.cc
index d052b2a9a71dd3c458bc9126785a15af263e8e6c..694c34cc0f2aeb04d0015389d8e78b9862827ba2 100644 (file)
 
 */
 
+#include "types.h"
+#include "dcpomatic_assert.h"
+#include "raw_convert.h"
 #include <libxml++/libxml++.h>
 #include <libcxml/cxml.h>
-#include <dcp/raw_convert.h>
-#include "types.h"
 
 using std::max;
 using std::min;
 using std::string;
 using boost::shared_ptr;
-using dcp::raw_convert;
 
 bool operator== (Crop const & a, Crop const & b)
 {
@@ -51,7 +51,7 @@ resolution_to_string (Resolution r)
                return "4K";
        }
 
-       assert (false);
+       DCPOMATIC_ASSERT (false);
        return "";
 }
 
@@ -67,7 +67,7 @@ string_to_resolution (string s)
                return RESOLUTION_4K;
        }
 
-       assert (false);
+       DCPOMATIC_ASSERT (false);
        return RESOLUTION_2K;
 }