Merge 1.0
[dcpomatic.git] / src / lib / decoded.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_LIB_DECODED_H
21 #define DCPOMATIC_LIB_DECODED_H
22
23 #include "types.h"
24 #include "rect.h"
25
26 class Image;
27
28 class Decoded
29 {
30 public:
31         Decoded ()
32                 : content_time (0)
33                 , dcp_time (0)
34         {}
35
36         Decoded (DCPTime ct)
37                 : content_time (ct)
38                 , dcp_time (0)
39         {}
40
41         virtual ~Decoded () {}
42
43         virtual void set_dcp_times (float speed_up, DCPTime offset) = 0;
44
45         ContentTime content_time;
46         DCPTime dcp_time;
47 };
48
49 /** One frame of video from a VideoDecoder */
50 class DecodedVideo : public Decoded
51 {
52 public:
53         DecodedVideo ()
54                 : eyes (EYES_BOTH)
55                 , same (false)
56         {}
57
58         DecodedVideo (boost::shared_ptr<const Image> im, Eyes e, bool s, ContentTime ct)
59                 : Decoded (ct)
60                 , image (im)
61                 , eyes (e)
62                 , same (s)
63         {}
64
65         void set_dcp_times (float speed_up, DCPTime offset) {
66                 dcp_time = rint (content_time / speed_up) + offset;
67         }
68         
69         boost::shared_ptr<const Image> image;
70         Eyes eyes;
71         bool same;
72 };
73
74 class DecodedAudio : public Decoded
75 {
76 public:
77         DecodedAudio (boost::shared_ptr<const AudioBuffers> d, ContentTime ct)
78                 : Decoded (ct)
79                 , data (d)
80         {}
81
82         void set_dcp_times (float speed_up, DCPTime offset) {
83                 dcp_time = rint (content_time / speed_up) + offset;
84         }
85         
86         boost::shared_ptr<const AudioBuffers> data;
87 };
88
89 class DecodedSubtitle : public Decoded
90 {
91 public:
92         DecodedSubtitle ()
93                 : content_time_to (0)
94                 , dcp_time_to (0)
95         {}
96
97         DecodedSubtitle (boost::shared_ptr<Image> im, dcpomatic::Rect<double> r, ContentTime f, ContentTime t)
98                 : Decoded (f)
99                 , image (im)
100                 , rect (r)
101                 , content_time_to (t)
102                 , dcp_time_to (0)
103         {}
104
105         void set_dcp_times (float speed_up, DCPTime offset) {
106                 dcp_time = rint (content_time / speed_up) + offset;
107                 dcp_time_to = rint (content_time_to / speed_up) + offset;
108         }
109
110         boost::shared_ptr<Image> image;
111         dcpomatic::Rect<double> rect;
112         ContentTime content_time_to;
113         DCPTime dcp_time_to;
114 };
115
116 #endif