X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_examiner.h;h=f64ea8d799dd51af807eb6cfbb29aee374cb5d95;hb=f97a548fa95de856e1936baffd7f24bb0441d5d7;hp=e87e11d1c7db29249e360963057a44a90c1aa647;hpb=22873931f874a87fcf6a0077eddbec0f97eb3423;p=dcpomatic.git diff --git a/src/lib/ffmpeg_examiner.h b/src/lib/ffmpeg_examiner.h index e87e11d1c..f64ea8d79 100644 --- a/src/lib/ffmpeg_examiner.h +++ b/src/lib/ffmpeg_examiner.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2015 Carl Hetherington + Copyright (C) 2013-2016 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -88,12 +88,15 @@ private: struct SubtitleStart { - SubtitleStart (std::string id_, ContentTime time_) + SubtitleStart (std::string id_, bool image_, ContentTime time_) : id (id_) + , image (image_) , time (time_) {} std::string id; + /** true if it's an image subtitle, false for text */ + bool image; ContentTime time; };