X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcpomatic_time.cc;h=98888646d0a841e26bcb077a426be8ac66e1e8e4;hb=c98c87afe29d9ef74bdced8a9c96d7752f3fe80f;hp=5344915c0c71c31639629ad58995ff6a3a96c25d;hpb=09806bc8d6a48fc79d923ec1cdf6f90176bf8b6a;p=dcpomatic.git diff --git a/src/lib/dcpomatic_time.cc b/src/lib/dcpomatic_time.cc index 5344915c0..98888646d 100644 --- a/src/lib/dcpomatic_time.cc +++ b/src/lib/dcpomatic_time.cc @@ -19,6 +19,8 @@ #include "dcpomatic_time.h" +using std::ostream; + ContentTime::ContentTime (DCPTime d, FrameRateChange f) : Time (rint (d.get() * f.speed_up)) { @@ -33,3 +35,17 @@ DCPTime min (DCPTime a, DCPTime b) return b; } + +ostream & +operator<< (ostream& s, ContentTime t) +{ + s << "[CONT " << t.get() << " " << t.seconds() << "s]"; + return s; +} + +ostream & +operator<< (ostream& s, DCPTime t) +{ + s << "[DCP " << t.get() << " " << t.seconds() << "s]"; + return s; +}