Merge master.
[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 <libdcp/subtitle_asset.h>
24 #include "types.h"
25 #include "rect.h"
26 #include "util.h"
27
28 class Image;
29
30 class Decoded
31 {
32 public:
33         Decoded ()
34                 : dcp_time (0)
35         {}
36
37         virtual ~Decoded () {}
38
39         virtual void set_dcp_times (VideoFrame, AudioFrame, FrameRateChange, DCPTime) = 0;
40
41         DCPTime dcp_time;
42 };
43
44 /** One frame of video from a VideoDecoder */
45 class DecodedVideo : public Decoded
46 {
47 public:
48         DecodedVideo ()
49                 : eyes (EYES_BOTH)
50                 , same (false)
51                 , frame (0)
52         {}
53
54         DecodedVideo (boost::shared_ptr<const Image> im, Eyes e, bool s, VideoFrame f)
55                 : image (im)
56                 , eyes (e)
57                 , same (s)
58                 , frame (f)
59         {}
60
61         void set_dcp_times (VideoFrame video_frame_rate, AudioFrame, FrameRateChange frc, DCPTime offset)
62         {
63                 dcp_time = frame * TIME_HZ * frc.factor() / video_frame_rate + offset;
64         }
65         
66         boost::shared_ptr<const Image> image;
67         Eyes eyes;
68         bool same;
69         VideoFrame frame;
70 };
71
72 class DecodedAudio : public Decoded
73 {
74 public:
75         DecodedAudio (boost::shared_ptr<const AudioBuffers> d, AudioFrame f)
76                 : data (d)
77                 , frame (f)
78         {}
79
80         void set_dcp_times (VideoFrame, AudioFrame audio_frame_rate, FrameRateChange, DCPTime offset)
81         {
82                 dcp_time = frame * TIME_HZ / audio_frame_rate + offset;
83         }
84         
85         boost::shared_ptr<const AudioBuffers> data;
86         AudioFrame frame;
87 };
88
89 class DecodedImageSubtitle : public Decoded
90 {
91 public:
92         DecodedImageSubtitle ()
93                 : content_time (0)
94                 , content_time_to (0)
95                 , dcp_time_to (0)
96         {}
97
98         DecodedImageSubtitle (boost::shared_ptr<Image> im, dcpomatic::Rect<double> r, ContentTime f, ContentTime t)
99                 : image (im)
100                 , rect (r)
101                 , content_time (f)
102                 , content_time_to (t)
103                 , dcp_time_to (0)
104         {}
105
106         void set_dcp_times (VideoFrame, AudioFrame, FrameRateChange frc, DCPTime offset)
107         {
108                 dcp_time = rint (content_time / frc.speed_up) + offset;
109                 dcp_time_to = rint (content_time_to / frc.speed_up) + offset;
110         }
111
112         boost::shared_ptr<Image> image;
113         dcpomatic::Rect<double> rect;
114         ContentTime content_time;
115         ContentTime content_time_to;
116         DCPTime dcp_time_to;
117 };
118
119 class DecodedTextSubtitle : public Decoded
120 {
121 public:
122         DecodedTextSubtitle ()
123                 : dcp_time_to (0)
124         {}
125
126         DecodedTextSubtitle (std::list<libdcp::Subtitle> s)
127                 : subs (s)
128         {}
129
130         void set_dcp_times (VideoFrame, AudioFrame, FrameRateChange frc, DCPTime offset)
131         {
132                 if (subs.empty ()) {
133                         return;
134                 }
135
136                 /* Assuming that all subs are at the same time */
137                 dcp_time = rint (subs.front().in().to_ticks() * 4 * TIME_HZ / frc.speed_up) + offset;
138                 dcp_time_to = rint (subs.front().out().to_ticks() * 4 * TIME_HZ / frc.speed_up) + offset;
139         }
140
141         std::list<libdcp::Subtitle> subs;
142         DCPTime dcp_time_to;
143 };
144
145 #endif