Merge branch 'content-rework-take5' of /home/carl/git/dvdomatic into content-rework...
[dcpomatic.git] / src / lib / video_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_VIDEO_CONTENT_H
21 #define DCPOMATIC_VIDEO_CONTENT_H
22
23 #include "content.h"
24 #include "util.h"
25
26 class VideoDecoder;
27
28 class VideoContentProperty
29 {
30 public:
31         static int const VIDEO_LENGTH;
32         static int const VIDEO_SIZE;
33         static int const VIDEO_FRAME_RATE;
34 };
35
36 class VideoContent : public virtual Content
37 {
38 public:
39         VideoContent (boost::filesystem::path);
40         VideoContent (boost::shared_ptr<const cxml::Node>);
41         VideoContent (VideoContent const &);
42
43         void as_xml (xmlpp::Node *) const;
44         virtual std::string information () const;
45
46         ContentVideoFrame video_length () const {
47                 boost::mutex::scoped_lock lm (_mutex);
48                 return _video_length;
49         }
50
51         libdcp::Size video_size () const {
52                 boost::mutex::scoped_lock lm (_mutex);
53                 return _video_size;
54         }
55         
56         float video_frame_rate () const {
57                 boost::mutex::scoped_lock lm (_mutex);
58                 return _video_frame_rate;
59         }
60
61 protected:
62         void take_from_video_decoder (boost::shared_ptr<VideoDecoder>);
63
64         ContentVideoFrame _video_length;
65
66 private:
67         libdcp::Size _video_size;
68         float _video_frame_rate;
69 };
70
71 #endif