X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_subtitle_period.h;h=0841207ad5f677372e14678adf8c8ea7ed43fed4;hb=fc1441eeaa3c0805c37809685ea7a3f5ca173666;hp=1c2c05975ba4c4e0fbf1b35d311db0cb63af7256;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/ffmpeg_subtitle_period.h b/src/lib/ffmpeg_subtitle_period.h index 1c2c05975..0841207ad 100644 --- a/src/lib/ffmpeg_subtitle_period.h +++ b/src/lib/ffmpeg_subtitle_period.h @@ -24,15 +24,15 @@ class FFmpegSubtitlePeriod { public: - 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 to; + dcpomatic::ContentTime from; + boost::optional to; };