Supporters update.
[dcpomatic.git] / src / lib / decoder_factory.cc
1 /*
2     Copyright (C) 2016-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "atmos_mxf_content.h"
23 #include "atmos_mxf_decoder.h"
24 #include "dcp_content.h"
25 #include "dcp_decoder.h"
26 #include "dcp_subtitle_content.h"
27 #include "dcp_subtitle_decoder.h"
28 #include "ffmpeg_content.h"
29 #include "ffmpeg_decoder.h"
30 #include "image_content.h"
31 #include "image_decoder.h"
32 #include "string_text_file_content.h"
33 #include "string_text_file_decoder.h"
34 #include "timer.h"
35 #include "video_mxf_content.h"
36 #include "video_mxf_decoder.h"
37
38
39 using std::dynamic_pointer_cast;
40 using std::list;
41 using std::make_shared;
42 using std::shared_ptr;
43
44
45 template <class T>
46 shared_ptr<T>
47 maybe_cast (shared_ptr<Decoder> d)
48 {
49         if (!d) {
50                 return {};
51         }
52         return dynamic_pointer_cast<T> (d);
53 }
54
55 /**
56    @param tolerant true to proceed in the face of `survivable' errors, otherwise false.
57    @param old_decoder A `used' decoder that has been previously made for this piece of content, or 0
58 */
59 shared_ptr<Decoder>
60 decoder_factory (shared_ptr<const Film> film, shared_ptr<const Content> content, bool fast, bool tolerant, shared_ptr<Decoder> old_decoder)
61 {
62         auto fc = dynamic_pointer_cast<const FFmpegContent> (content);
63         if (fc) {
64                 return make_shared<FFmpegDecoder>(film, fc, fast);
65         }
66
67         auto dc = dynamic_pointer_cast<const DCPContent> (content);
68         if (dc) {
69                 try {
70                         return make_shared<DCPDecoder>(film, dc, fast, tolerant, maybe_cast<DCPDecoder>(old_decoder));
71                 } catch (KDMError& e) {
72                         /* This will be found and reported to the user when the content is examined */
73                         return {};
74                 }
75         }
76
77         auto ic = dynamic_pointer_cast<const ImageContent> (content);
78         if (ic) {
79                 return make_shared<ImageDecoder>(film, ic);
80         }
81
82         auto rc = dynamic_pointer_cast<const StringTextFileContent> (content);
83         if (rc) {
84                 return make_shared<StringTextFileDecoder>(film, rc);
85         }
86
87         auto dsc = dynamic_pointer_cast<const DCPSubtitleContent> (content);
88         if (dsc) {
89                 return make_shared<DCPSubtitleDecoder>(film, dsc);
90         }
91
92         auto vmc = dynamic_pointer_cast<const VideoMXFContent> (content);
93         if (vmc) {
94                 return make_shared<VideoMXFDecoder>(film, vmc);
95         }
96
97         auto amc = dynamic_pointer_cast<const AtmosMXFContent> (content);
98         if (amc) {
99                 return make_shared<AtmosMXFDecoder>(film, amc);
100         }
101
102         return {};
103 }