X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_content_scale.cc;h=c86ba6ef8a9995cdc8bf7f5c23e1958f5a3a16b3;hb=e11276a822289d7d7d91a4f431f386ad28ef16dd;hp=775b3d9b71ac496194318af2198717e51f0bafae;hpb=1858190cff2f960f3d1f0a5cc02c69da86088f5b;p=dcpomatic.git diff --git a/src/lib/video_content_scale.cc b/src/lib/video_content_scale.cc index 775b3d9b7..c86ba6ef8 100644 --- a/src/lib/video_content_scale.cc +++ b/src/lib/video_content_scale.cc @@ -1,26 +1,26 @@ /* Copyright (C) 2013-2015 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 . */ #include "video_content_scale.h" #include "video_content.h" #include "ratio.h" -#include "safe_stringstream.h" #include "util.h" #include #include @@ -84,15 +84,11 @@ VideoContentScale::as_xml (xmlpp::Node* node) const string VideoContentScale::id () const { - SafeStringStream s; - if (_ratio) { - s << _ratio->id (); - } else { - s << (_scale ? "S1" : "S0"); + return _ratio->id (); } - return s.str (); + return (_scale ? "S1" : "S0"); } string @@ -132,7 +128,7 @@ VideoContentScale::size (shared_ptr c, dcp::Size display_con { /* Work out the size of the content if it were put inside film_container */ - dcp::Size const video_size_after_crop = c->video_size_after_crop (); + dcp::Size const video_size_after_crop = c->size_after_crop (); dcp::Size size;