Fix failure on 1-frame-back seek (#604).
[dcpomatic.git] / src / lib / content_subtitle.cc
index 11873afee0a3791f00a28c10a5422c09ac4173ce..4eed8b4b2b0b03941428bf97f658634e8f8c6c4c 100644 (file)
 
 #include "content_subtitle.h"
 
-ContentTime
-ContentTextSubtitle::from () const
+ContentTimePeriod
+ContentTextSubtitle::period () const
 {
        /* XXX: assuming we have some subs and they are all at the same time */
-       assert (!subs.empty ());
-       return ContentTime::from_seconds (double (subs.front().in().to_ticks()) / 250);
-}
-
-ContentTime
-ContentTextSubtitle::to () const
-{
-       /* XXX: assuming we have some subs and they are all at the same time */
-       assert (!subs.empty ());
-       return ContentTime::from_seconds (double (subs.front().out().to_ticks()) / 250);
+       DCPOMATIC_ASSERT (!subs.empty ());
+       return ContentTimePeriod (
+               ContentTime::from_seconds (subs.front().in().as_seconds()),
+               ContentTime::from_seconds (subs.front().out().as_seconds())
+               );
 }