Add content parameter to Piece::content_time_to_dcp().
[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         boost::optional<dcpomatic::DCPTime> content_time_to_dcp (std::shared_ptr<const Content> content, dcpomatic::ContentTime t) const;
51
52         void pass ();
53
54         bool use_video () const;
55         VideoFrameType video_frame_type () const;
56
57         FrameRateChange frame_rate_change () const {
58                 return frc;
59         }
60
61         dcpomatic::DCPTime position () const;
62         dcpomatic::DCPTime end (std::shared_ptr<const Film> film) const;
63
64         std::shared_ptr<PlayerVideo> player_video (ContentVideo video, std::shared_ptr<const Film> film, dcp::Size container_size) const;
65
66         int resampled_audio_frame_rate (std::shared_ptr<const Film> film) const;
67         double audio_gain () const;
68         bool reference_dcp_audio () const;
69
70         std::shared_ptr<Decoder> decoder_for (std::shared_ptr<Content> content) const;
71
72         dcpomatic::DCPTime decoder_position () const;
73
74         std::shared_ptr<Content> content;
75         std::shared_ptr<Decoder> decoder;
76         boost::optional<dcpomatic::DCPTimePeriod> ignore_video;
77         FrameRateChange frc;
78         bool done = false;
79
80 private:
81         std::map<AudioStreamPtr, dcpomatic::DCPTime> _stream_last_push_end;
82 };
83
84
85 #endif