diff options
Diffstat (limited to 'src/lib/render_subtitles.cc')
| -rw-r--r-- | src/lib/render_subtitles.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/render_subtitles.cc b/src/lib/render_subtitles.cc index 76aa09229..94a6b837b 100644 --- a/src/lib/render_subtitles.cc +++ b/src/lib/render_subtitles.cc @@ -28,6 +28,7 @@ #include <cairomm/cairomm.h> #include <pangomm.h> #include <boost/foreach.hpp> +#include <boost/make_shared.hpp> #include <iostream> using std::list; @@ -39,6 +40,7 @@ using std::pair; using std::cerr; using std::make_pair; using boost::shared_ptr; +using boost::make_shared; using boost::optional; static FcConfig* fc_config = 0; @@ -80,7 +82,7 @@ render_line (list<dcp::SubtitleString> subtitles, list<shared_ptr<Font> > fonts, /* ...and add a bit more for luck */ height += target.height / 11; - shared_ptr<Image> image (new Image (AV_PIX_FMT_RGBA, dcp::Size (target.width, height), false)); + shared_ptr<Image> image = make_shared<Image> (AV_PIX_FMT_RGBA, dcp::Size (target.width, height), false); image->make_black (); #ifdef DCPOMATIC_HAVE_FORMAT_STRIDE_FOR_WIDTH |
