C++11 tidying.
[dcpomatic.git] / src / lib / ffmpeg_subtitle_period.h
index 42c7bf76325fdf766e33ccf88a8770e347dd396c..0841207ad5f677372e14678adf8c8ea7ed43fed4 100644 (file)
 class FFmpegSubtitlePeriod
 {
 public:
-       explicit FFmpegSubtitlePeriod (ContentTime f)
+       explicit FFmpegSubtitlePeriod (dcpomatic::ContentTime f)
                : from (f)
        {}
 
-       FFmpegSubtitlePeriod (ContentTime f, ContentTime t)
+       FFmpegSubtitlePeriod (dcpomatic::ContentTime f, dcpomatic::ContentTime t)
                : from (f)
                , to (t)
        {}
 
-       ContentTime from;
-       boost::optional<ContentTime> to;
+       dcpomatic::ContentTime from;
+       boost::optional<dcpomatic::ContentTime> to;
 };