std::shared_ptr
[dcpomatic.git] / src / lib / atmos_mxf_decoder.cc
1 /*
2     Copyright (C) 2020 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 #include "atmos_content.h"
22 #include "atmos_decoder.h"
23 #include "atmos_mxf_content.h"
24 #include "atmos_mxf_decoder.h"
25 #include "dcpomatic_time.h"
26 #include <dcp/atmos_asset.h>
27 #include <dcp/atmos_asset_reader.h>
28
29 using std::shared_ptr;
30
31 AtmosMXFDecoder::AtmosMXFDecoder (std::shared_ptr<const Film> film, std::shared_ptr<const AtmosMXFContent> content)
32         : Decoder (film)
33         , _content (content)
34 {
35         atmos.reset (new AtmosDecoder(this, content));
36
37         shared_ptr<dcp::AtmosAsset> asset (new dcp::AtmosAsset(_content->path(0)));
38         _reader = asset->start_read ();
39         _metadata = AtmosMetadata (asset);
40 }
41
42
43 bool
44 AtmosMXFDecoder::pass ()
45 {
46         double const vfr = _content->active_video_frame_rate (film());
47         int64_t const frame = _next.frames_round (vfr);
48
49         if (frame >= _content->atmos->length()) {
50                 return true;
51         }
52
53         atmos->emit (film(), _reader->get_frame(frame), frame, *_metadata);
54         _next += dcpomatic::ContentTime::from_frames (1, vfr);
55         return false;
56 }
57
58
59 void
60 AtmosMXFDecoder::seek (dcpomatic::ContentTime t, bool accurate)
61 {
62         Decoder::seek (t, accurate);
63         _next = t;
64 }
65