No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / lib / ffmpeg_content.h
1 /*
2     Copyright (C) 2013-2016 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 #ifndef DCPOMATIC_FFMPEG_CONTENT_H
22 #define DCPOMATIC_FFMPEG_CONTENT_H
23
24 #include "content.h"
25 #include "audio_stream.h"
26
27 struct AVFormatContext;
28 struct AVStream;
29
30 class Filter;
31 class FFmpegSubtitleStream;
32 class FFmpegAudioStream;
33 class VideoContent;
34 struct ffmpeg_pts_offset_test;
35 struct audio_sampling_rate_test;
36
37 class FFmpegContentProperty
38 {
39 public:
40         static int const SUBTITLE_STREAMS;
41         /** The chosen subtitle stream, or something about it */
42         static int const SUBTITLE_STREAM;
43         static int const FILTERS;
44 };
45
46 class FFmpegContent : public Content
47 {
48 public:
49         FFmpegContent (boost::shared_ptr<const Film>, boost::filesystem::path);
50         FFmpegContent (boost::shared_ptr<const Film>, cxml::ConstNodePtr, int version, std::list<std::string> &);
51         FFmpegContent (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
52
53         boost::shared_ptr<FFmpegContent> shared_from_this () {
54                 return boost::dynamic_pointer_cast<FFmpegContent> (Content::shared_from_this ());
55         }
56
57         void examine (boost::shared_ptr<Job>);
58         std::string summary () const;
59         std::string technical_summary () const;
60         void as_xml (xmlpp::Node *) const;
61         DCPTime full_length () const;
62
63         std::string identifier () const;
64
65         void set_default_colour_conversion ();
66
67         void set_filters (std::vector<Filter const *> const &);
68
69         std::vector<boost::shared_ptr<FFmpegSubtitleStream> > subtitle_streams () const {
70                 boost::mutex::scoped_lock lm (_mutex);
71                 return _subtitle_streams;
72         }
73
74         boost::shared_ptr<FFmpegSubtitleStream> subtitle_stream () const {
75                 boost::mutex::scoped_lock lm (_mutex);
76                 return _subtitle_stream;
77         }
78
79         std::vector<boost::shared_ptr<FFmpegAudioStream> > ffmpeg_audio_streams () const;
80
81         std::vector<Filter const *> filters () const {
82                 boost::mutex::scoped_lock lm (_mutex);
83                 return _filters;
84         }
85
86         void set_subtitle_stream (boost::shared_ptr<FFmpegSubtitleStream>);
87
88         boost::optional<ContentTime> first_video () const {
89                 boost::mutex::scoped_lock lm (_mutex);
90                 return _first_video;
91         }
92
93         std::list<ContentTimePeriod> image_subtitles_during (ContentTimePeriod, bool starting) const;
94         std::list<ContentTimePeriod> text_subtitles_during (ContentTimePeriod, bool starting) const;
95
96         void signal_subtitle_stream_changed ();
97
98 private:
99         void add_properties (std::list<UserProperty> &) const;
100
101         friend struct ffmpeg_pts_offset_test;
102         friend struct audio_sampling_rate_test;
103
104         std::vector<boost::shared_ptr<FFmpegSubtitleStream> > _subtitle_streams;
105         boost::shared_ptr<FFmpegSubtitleStream> _subtitle_stream;
106         boost::optional<ContentTime> _first_video;
107         /** Video filters that should be used when generating DCPs */
108         std::vector<Filter const *> _filters;
109
110         AVColorRange _color_range;
111         AVColorPrimaries _color_primaries;
112         AVColorTransferCharacteristic _color_trc;
113         AVColorSpace _colorspace;
114         boost::optional<int> _bits_per_pixel;
115 };
116
117 #endif