Move time calculation methods from Player into Piece.
[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 "dcpomatic_time.h"
28 #include "frame_rate_change.h"
29 #include "types.h"
30 #include <map>
31
32
33 class Content;
34 class Decoder;
35
36
37 class Piece
38 {
39 public:
40         Piece (std::shared_ptr<Content> c, std::shared_ptr<Decoder> d, FrameRateChange f);
41
42         void update_pull_to (dcpomatic::DCPTime& pull_to) const;
43         void set_last_push_end (AudioStreamPtr stream, dcpomatic::DCPTime last_push_end);
44
45         dcpomatic::DCPTime content_video_to_dcp (Frame f) const;
46         dcpomatic::DCPTime resampled_audio_to_dcp (Frame f, std::shared_ptr<const Film> film) const;
47         dcpomatic::ContentTime dcp_to_content_time (dcpomatic::DCPTime t, std::shared_ptr<const Film> film) const;
48         dcpomatic::DCPTime content_time_to_dcp (dcpomatic::ContentTime t) const;
49
50         std::shared_ptr<Content> content;
51         std::shared_ptr<Decoder> decoder;
52         boost::optional<dcpomatic::DCPTimePeriod> ignore_video;
53         FrameRateChange frc;
54         bool done = false;
55
56 private:
57         std::map<AudioStreamPtr, dcpomatic::DCPTime> _stream_last_push_end;
58 };
59
60
61 #endif