X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsubtitle.cc;h=7013f1d7d9004a635ac0732a8f77c638f92f6550;hb=09a9ac376db005a40a351736bcff4077f098825d;hp=eafccd9b503651e2744bb53117c8c699e8c6bc0c;hpb=f2caad0df1a451e2aff68dfd37277faa72116e12;p=dcpomatic.git diff --git a/src/lib/subtitle.cc b/src/lib/subtitle.cc index eafccd9b5..7013f1d7d 100644 --- a/src/lib/subtitle.cc +++ b/src/lib/subtitle.cc @@ -1,5 +1,3 @@ -/* -*- c-basic-offset: 8; default-tab-width: 8; -*- */ - /* Copyright (C) 2012 Carl Hetherington @@ -29,8 +27,7 @@ #include "i18n.h" -using namespace std; -using namespace boost; +using boost::shared_ptr; using libdcp::Size; /** Construct a TimedSubtitle. This is a subtitle image, position, @@ -110,13 +107,13 @@ Subtitle::Subtitle (Position p, shared_ptr i) * in the coordinate space of the source. * @param subtitle_scale scaling factor to apply to the subtitle image. */ -Rect +dcpomatic::Rect subtitle_transformed_area ( float target_x_scale, float target_y_scale, - Rect sub_area, int subtitle_offset, float subtitle_scale + dcpomatic::Rect sub_area, int subtitle_offset, float subtitle_scale ) { - Rect tx; + dcpomatic::Rect tx; sub_area.y += subtitle_offset; @@ -145,8 +142,8 @@ subtitle_transformed_area ( } /** @return area that this subtitle takes up, in the original uncropped source's coordinate space */ -Rect +dcpomatic::Rect Subtitle::area () const { - return Rect (_position.x, _position.y, _image->size().width, _image->size().height); + return dcpomatic::Rect (_position.x, _position.y, _image->size().width, _image->size().height); }