X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcpomatic_time.cc;h=98888646d0a841e26bcb077a426be8ac66e1e8e4;hb=4e411ea97b4dab8a5fa282d1d4cf7971ef1e24ad;hp=5344915c0c71c31639629ad58995ff6a3a96c25d;hpb=79ce26d031d109177ba4b0f637fa2960345a37a3;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; +}