X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_content.cc;h=d1a65800155ec13559b071ee41f3332a782af08a;hb=59e769023c392c332331567a1aea94660002c463;hp=a5b5f37e13f967a9c4845d707000f19049c140cb;hpb=8c7a308c03e4b4196b4e2379a26d432b100ae2b1;p=dcpomatic.git diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index a5b5f37e1..d1a658001 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -17,14 +17,14 @@ */ -#include -#include #include "dcp_content.h" #include "dcp_examiner.h" #include "job.h" #include "film.h" #include "config.h" #include "compose.hpp" +#include +#include #include "i18n.h" @@ -139,7 +139,7 @@ DCPTime DCPContent::full_length () const { shared_ptr film = _film.lock (); - assert (film); + DCPOMATIC_ASSERT (film); return DCPTime (video_length (), FrameRateChange (video_frame_rate (), film->video_frame_rate ())); }