5997e0fd6caa40f026f5396d80cc367c0a3cafac
[dcpomatic.git] / src / lib / piece.h
1 /*
2     Copyright (C) 2013-2021 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
22 #ifndef DCPOMATIC_PIECE_H
23 #define DCPOMATIC_PIECE_H
24
25
26 #include "audio_stream.h"
27 #include "content_video.h"
28 #include "dcpomatic_time.h"
29 #include "frame_rate_change.h"
30 #include "types.h"
31 #include <map>
32
33
34 class Content;
35 class Decoder;
36 class PlayerVideo;
37
38
39 class Piece
40 {
41 public:
42         Piece (std::shared_ptr<Content> c, std::shared_ptr<Decoder> d, FrameRateChange f);
43
44         void update_pull_to (dcpomatic::DCPTime& pull_to) const;
45         void set_last_push_end (AudioStreamPtr stream, dcpomatic::DCPTime last_push_end);
46
47         dcpomatic::DCPTime content_video_to_dcp (Frame f) const;
48         dcpomatic::DCPTime resampled_audio_to_dcp (Frame f, std::shared_ptr<const Film> film) const;
49         dcpomatic::ContentTime dcp_to_content_time (dcpomatic::DCPTime t, std::shared_ptr<const Film> film) const;
50         dcpomatic::DCPTime content_time_to_dcp (dcpomatic::ContentTime t) const;
51
52         bool use_video () const;
53
54         FrameRateChange frame_rate_change () const {
55                 return frc;
56         }
57
58         dcpomatic::DCPTime position () const;
59         dcpomatic::DCPTime end (std::shared_ptr<const Film> film) const;
60
61         std::shared_ptr<PlayerVideo> player_video (ContentVideo video, std::shared_ptr<const Film> film, dcp::Size container_size) const;
62
63         std::shared_ptr<Content> content;
64         std::shared_ptr<Decoder> decoder;
65         boost::optional<dcpomatic::DCPTimePeriod> ignore_video;
66         FrameRateChange frc;
67         bool done = false;
68
69 private:
70         std::map<AudioStreamPtr, dcpomatic::DCPTime> _stream_last_push_end;
71 };
72
73
74 #endif