X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_subtitle_period.h;h=0841207ad5f677372e14678adf8c8ea7ed43fed4;hb=001ba1644fc6aa54f91fcaaa62ae7e5de2313bc1;hp=42c7bf76325fdf766e33ccf88a8770e347dd396c;hpb=c6871fe8617b3de03662b7630355059393bf8043;p=dcpomatic.git diff --git a/src/lib/ffmpeg_subtitle_period.h b/src/lib/ffmpeg_subtitle_period.h index 42c7bf763..0841207ad 100644 --- a/src/lib/ffmpeg_subtitle_period.h +++ b/src/lib/ffmpeg_subtitle_period.h @@ -24,15 +24,15 @@ 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 to; + dcpomatic::ContentTime from; + boost::optional to; };