X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftools%2Fdcpomatic_create.cc;h=3697b4e8bb055adc13d156ceed6cf6dc94ba413f;hb=5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f;hp=68ae377db345e44b4fe8c38b843f68587048d2fa;hpb=2d5beb0d6794df13ad1df47e84fd7a57d1d1c64d;p=dcpomatic.git diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 68ae377db..3697b4e8b 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -1,19 +1,20 @@ /* Copyright (C) 2013-2016 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -30,6 +31,7 @@ #include "lib/video_content.h" #include #include +#include #include #include #include @@ -42,6 +44,7 @@ using std::cerr; using std::list; using std::exception; using boost::shared_ptr; +using boost::make_shared; using boost::dynamic_pointer_cast; static void @@ -205,7 +208,7 @@ main (int argc, char* argv[]) } try { - shared_ptr film (new Film (output, false)); + shared_ptr film = make_shared (output, false); film->set_name (name); film->set_container (container_ratio);