X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fffmpeg_subtitle_period.h;h=0841207ad5f677372e14678adf8c8ea7ed43fed4;hp=42c7bf76325fdf766e33ccf88a8770e347dd396c;hb=6ef1fc5f40567650ca9ef2b7644e4fdd97640ae6;hpb=c6871fe8617b3de03662b7630355059393bf8043 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; };