X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fmake_dcp.cc;h=17d45be46e13416869977b6951d73a95573b2bdf;hb=HEAD;hp=934387fcd00519ed56d266b7fde8ebb2b29ad808;hpb=df5228d00d70d68218e7f606131a0c5fa2caba9f;p=dcpomatic.git diff --git a/src/lib/make_dcp.cc b/src/lib/make_dcp.cc index 934387fcd..17d45be46 100644 --- a/src/lib/make_dcp.cc +++ b/src/lib/make_dcp.cc @@ -22,12 +22,12 @@ #include "config.h" #include "dcp_content.h" #include "dcp_encoder.h" +#include "dcp_transcode_job.h" #include "dcpomatic_log.h" #include "environment_info.h" #include "film.h" #include "job_manager.h" #include "make_dcp.h" -#include "transcode_job.h" #include #include "i18n.h" @@ -98,7 +98,7 @@ make_dcp (shared_ptr film, TranscodeJob::ChangedBehaviour behaviour) } LOG_GENERAL ("J2K bandwidth %1", film->j2k_bandwidth()); - auto tj = make_shared(film, behaviour); + auto tj = make_shared(film, behaviour); tj->set_encoder (make_shared(film, tj)); JobManager::instance()->add (tj); }