diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-04 01:13:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-04 01:13:13 +0000 |
| commit | 8af00f5e0862c18e8c7b5f9ac0ea95a5d6ad696c (patch) | |
| tree | 925d0673ec1c3319a8cc85374acb14a27d555c60 /src/lib/dcp_subtitle.cc | |
| parent | a5095486e606adfe36de635a48710cf98872c1c6 (diff) | |
Fix loading of SMPTE subtitles that are not MXF-wrapped.
Diffstat (limited to 'src/lib/dcp_subtitle.cc')
| -rw-r--r-- | src/lib/dcp_subtitle.cc | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/lib/dcp_subtitle.cc b/src/lib/dcp_subtitle.cc new file mode 100644 index 000000000..17874c27e --- /dev/null +++ b/src/lib/dcp_subtitle.cc @@ -0,0 +1,61 @@ +/* + Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net> + + This program 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, + 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. + +*/ + +#include "dcp_subtitle.h" +#include "exceptions.h" +#include <dcp/interop_subtitle_content.h> +#include <dcp/smpte_subtitle_content.h> + +#include "i18n.h" + +using boost::shared_ptr; + +shared_ptr<dcp::SubtitleContent> +DCPSubtitle::load (boost::filesystem::path file) const +{ + shared_ptr<dcp::SubtitleContent> sc; + + try { + sc.reset (new dcp::InteropSubtitleContent (file)); + } catch (...) { + + } + + if (!sc) { + try { + sc.reset (new dcp::SMPTESubtitleContent (file, true)); + } catch (...) { + + } + } + + if (!sc) { + try { + sc.reset (new dcp::SMPTESubtitleContent (file, false)); + } catch (...) { + + } + } + + if (!sc) { + throw FileError (_("Could not read subtitles"), file); + } + + return sc; +} |
