X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_proxy.cc;h=c426e796fba8d05819ac9d9133f03415dadba4db;hb=dba7e1137282b52a1bd6ad1d56fe6371a8c97e30;hp=e16fab0630af1bece7092f6579c967d15a8315c3;hpb=72b11d5eb036651b6ff68edf3ed270e8fc52960f;p=dcpomatic.git diff --git a/src/lib/image_proxy.cc b/src/lib/image_proxy.cc index e16fab063..c426e796f 100644 --- a/src/lib/image_proxy.cc +++ b/src/lib/image_proxy.cc @@ -18,32 +18,36 @@ */ -#include "image_proxy.h" -#include "raw_image_proxy.h" + +#include "cross.h" +#include "exceptions.h" #include "ffmpeg_image_proxy.h" -#include "j2k_image_proxy.h" #include "image.h" -#include "exceptions.h" -#include "cross.h" +#include "image_proxy.h" +#include "j2k_image_proxy.h" +#include "raw_image_proxy.h" #include #include #include #include "i18n.h" + using std::cout; +using std::make_shared; +using std::shared_ptr; using std::string; -using boost::shared_ptr; + shared_ptr image_proxy_factory (shared_ptr xml, shared_ptr socket) { if (xml->string_child("Type") == N_("Raw")) { - return shared_ptr (new RawImageProxy (xml, socket)); + return make_shared(xml, socket); } else if (xml->string_child("Type") == N_("FFmpeg")) { - return shared_ptr (new FFmpegImageProxy(xml, socket)); + return make_shared(socket); } else if (xml->string_child("Type") == N_("J2K")) { - return shared_ptr (new J2KImageProxy (xml, socket)); + return make_shared(xml, socket); } throw NetworkError (_("Unexpected image type received by server"));