Merge master.
[dcpomatic.git] / src / lib / video_examiner.h
index 72f6ccc12cab575f2a20e297ecdfed5bbb967344..d4897213beb69634d1b777b955e4d0b9efa9a44b 100644 (file)
 
 */
 
-#include <libdcp/types.h>
+#include <dcp/types.h>
 #include "types.h"
 #include "video_content.h"
 
 class VideoExaminer
 {
 public:
+       virtual ~VideoExaminer () {}
        virtual float video_frame_rate () const = 0;
-       virtual libdcp::Size video_size () const = 0;
-       virtual VideoContent::Frame video_length () const = 0;
+       virtual dcp::Size video_size () const = 0;
+       virtual ContentTime video_length () const = 0;
 };