X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_subtitle.cc;h=0943a6b08721c49c0c0132acb90273cd14901d6c;hb=3fecd33dc2fd14ed487cb14bf9647ee5c0572868;hp=66cee4ad866f9772e8cdc96e75dc696a66ac9c14;hpb=f07623551706b849190c84059bac455088f8eb1e;p=dcpomatic.git diff --git a/src/lib/dcp_subtitle.cc b/src/lib/dcp_subtitle.cc index 66cee4ad8..0943a6b08 100644 --- a/src/lib/dcp_subtitle.cc +++ b/src/lib/dcp_subtitle.cc @@ -1,60 +1,62 @@ /* - Copyright (C) 2014-2015 Carl Hetherington + Copyright (C) 2014-2021 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 "dcp_subtitle.h" #include "exceptions.h" +#include "compose.hpp" #include #include #include "i18n.h" -using boost::shared_ptr; + +using std::exception; +using std::shared_ptr; +using std::string; +using std::make_shared; + shared_ptr DCPSubtitle::load (boost::filesystem::path file) const { shared_ptr sc; - - try { - sc.reset (new dcp::InteropSubtitleAsset (file)); - } catch (...) { - - } + string interop_error; + string smpte_error; - if (!sc) { - try { - sc.reset (new dcp::SMPTESubtitleAsset (file, true)); - } catch (...) { - - } + try { + sc = make_shared(file); + } catch (exception& e) { + interop_error = e.what (); } if (!sc) { try { - sc.reset (new dcp::SMPTESubtitleAsset (file, false)); - } catch (...) { - + sc = make_shared(file); + } catch (exception& e) { + smpte_error = e.what(); } } if (!sc) { - throw FileError (_("Could not read subtitles"), file); + throw FileError(String::compose(_("Could not read subtitles (%1 / %2)"), interop_error, smpte_error), file); } return sc;