summaryrefslogtreecommitdiff
path: root/src/dcp_time.cc
AgeCommit message (Collapse)Author
2014-10-06Fix heinous bug with conversion to libdcp::Time causing missing subtitles ↵Carl Hetherington
(and probably other problems).
2014-05-11Use raw_convert instead of boost::lexical_cast as it seemsCarl Hetherington
that lexical_cast will sometimes use a thousands separator (i.e. it will convert 1234 to a string 1,234). It appears not to be possible safely to turn this off (you have to set the global locale). Instead, raw_convert uses a stringstream which you can imbue() with std::locale::classic() to turn off the locale-specific behaviour.
2013-10-24Remove debug code.Carl Hetherington
2013-10-24Fix ticks calculations.Carl Hetherington
2013-10-24Add Time constructor from ticks; fix Time::to_ticks().Carl Hetherington
2013-06-18Merge master.Carl Hetherington
2013-02-10Derive exceptions from boost::exception and use boost::throw_exception to ↵Carl Hetherington
enable thread-safe exception handling by callers.
2013-01-14Merge masterCarl Hetherington
2013-01-09Comment tweaks.Carl Hetherington
2012-12-31Initial hacks.Carl Hetherington
2012-10-19Initial work on subtitle writing.Carl Hetherington
2012-08-22Some maths operations with Time.Carl Hetherington
2012-08-21Pick up effect and effect color.Carl Hetherington
2012-08-16Some comments.Carl Hetherington
2012-08-13Fix up some bugs with subs.Carl Hetherington
2012-08-134th parameter of time is ticks (1 tick = 4ms) not millisecondsCarl Hetherington
2012-08-13Time from frame.Carl Hetherington
2012-08-13Subtitles at method.Carl Hetherington
2012-08-13Missing files.Carl Hetherington