Add basic windowed-sinc audio filters.
[dcpomatic.git] / src / lib / dcpomatic_time.cc
index fa6271354bdd4013ded09ae3ff365160c4b0b04b..812c756ec27891224495b1a57b3e374ee793321d 100644 (file)
@@ -59,5 +59,5 @@ ContentTimePeriod::overlaps (ContentTimePeriod const & other) const
 bool
 ContentTimePeriod::contains (ContentTime const & other) const
 {
-       return (from >= other && to < other);
+       return (from <= other && other < to);
 }