Add basic timeline window.
[dcpomatic.git] / src / lib / ffmpeg_content.h
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_FFMPEG_CONTENT_H
21 #define DCPOMATIC_FFMPEG_CONTENT_H
22
23 #include <boost/enable_shared_from_this.hpp>
24 #include "video_content.h"
25 #include "audio_content.h"
26
27 class FFmpegAudioStream
28 {
29 public:
30         FFmpegAudioStream (std::string n, int i, int f, int c)
31                 : name (n)
32                 , id (i)
33                 , frame_rate (f)
34                 , channels (c)
35         {}
36
37         FFmpegAudioStream (boost::shared_ptr<const cxml::Node>);
38
39         void as_xml (xmlpp::Node *) const;
40         
41         std::string name;
42         int id;
43         int frame_rate;
44         int channels;
45 };
46
47 extern bool operator== (FFmpegAudioStream const & a, FFmpegAudioStream const & b);
48
49 class FFmpegSubtitleStream
50 {
51 public:
52         FFmpegSubtitleStream (std::string n, int i)
53                 : name (n)
54                 , id (i)
55         {}
56         
57         FFmpegSubtitleStream (boost::shared_ptr<const cxml::Node>);
58
59         void as_xml (xmlpp::Node *) const;
60         
61         std::string name;
62         int id;
63 };
64
65 extern bool operator== (FFmpegSubtitleStream const & a, FFmpegSubtitleStream const & b);
66
67 class FFmpegContentProperty : public VideoContentProperty
68 {
69 public:
70         static int const SUBTITLE_STREAMS;
71         static int const SUBTITLE_STREAM;
72         static int const AUDIO_STREAMS;
73         static int const AUDIO_STREAM;
74 };
75
76 class FFmpegContent : public VideoContent, public AudioContent
77 {
78 public:
79         FFmpegContent (boost::filesystem::path);
80         FFmpegContent (boost::shared_ptr<const cxml::Node>);
81         FFmpegContent (FFmpegContent const &);
82
83         boost::shared_ptr<FFmpegContent> shared_from_this () {
84                 return boost::dynamic_pointer_cast<FFmpegContent> (Content::shared_from_this ());
85         }
86         
87         void examine (boost::shared_ptr<Film>, boost::shared_ptr<Job>, bool);
88         std::string summary () const;
89         std::string information () const;
90         void as_xml (xmlpp::Node *) const;
91         boost::shared_ptr<Content> clone () const;
92         double temporal_length () const;
93
94         /* AudioContent */
95         int audio_channels () const;
96         ContentAudioFrame audio_length () const;
97         int audio_frame_rate () const;
98         
99         std::vector<FFmpegSubtitleStream> subtitle_streams () const {
100                 boost::mutex::scoped_lock lm (_mutex);
101                 return _subtitle_streams;
102         }
103
104         boost::optional<FFmpegSubtitleStream> subtitle_stream () const {
105                 boost::mutex::scoped_lock lm (_mutex);
106                 return _subtitle_stream;
107         }
108
109         std::vector<FFmpegAudioStream> audio_streams () const {
110                 boost::mutex::scoped_lock lm (_mutex);
111                 return _audio_streams;
112         }
113         
114         boost::optional<FFmpegAudioStream> audio_stream () const {
115                 boost::mutex::scoped_lock lm (_mutex);
116                 return _audio_stream;
117         }
118
119         void set_subtitle_stream (FFmpegSubtitleStream);
120         void set_audio_stream (FFmpegAudioStream);
121         
122 private:
123         std::vector<FFmpegSubtitleStream> _subtitle_streams;
124         boost::optional<FFmpegSubtitleStream> _subtitle_stream;
125         std::vector<FFmpegAudioStream> _audio_streams;
126         boost::optional<FFmpegAudioStream> _audio_stream;
127 };
128
129 #endif