Use make_shared<>.
[dcpomatic.git] / src / lib / video_mxf_decoder.cc
1 /*
2     Copyright (C) 2016 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 "video_mxf_decoder.h"
22 #include "video_decoder.h"
23 #include "video_mxf_content.h"
24 #include "j2k_image_proxy.h"
25 #include <dcp/mono_picture_asset.h>
26 #include <dcp/mono_picture_asset_reader.h>
27 #include <dcp/stereo_picture_asset.h>
28 #include <dcp/stereo_picture_asset_reader.h>
29 #include <dcp/exceptions.h>
30 #include <boost/make_shared.hpp>
31
32 using boost::shared_ptr;
33 using boost::make_shared;
34
35 VideoMXFDecoder::VideoMXFDecoder (shared_ptr<const VideoMXFContent> content, shared_ptr<Log> log)
36         : _content (content)
37 {
38         video.reset (new VideoDecoder (this, content, log));
39
40         shared_ptr<dcp::MonoPictureAsset> mono;
41         try {
42                 mono.reset (new dcp::MonoPictureAsset (_content->path(0)));
43         } catch (dcp::MXFFileError& e) {
44                 /* maybe it's stereo */
45         } catch (dcp::DCPReadError& e) {
46                 /* maybe it's stereo */
47         }
48
49         shared_ptr<dcp::StereoPictureAsset> stereo;
50         try {
51                 stereo.reset (new dcp::StereoPictureAsset (_content->path(0)));
52         } catch (dcp::MXFFileError& e) {
53                 if (!mono) {
54                         throw;
55                 }
56         } catch (dcp::DCPReadError& e) {
57                 if (!mono) {
58                         throw;
59                 }
60         }
61
62         if (mono) {
63                 _mono_reader = mono->start_read ();
64                 _size = mono->size ();
65         } else {
66                 _stereo_reader = stereo->start_read ();
67                 _size = stereo->size ();
68         }
69 }
70
71 bool
72 VideoMXFDecoder::pass (PassReason, bool)
73 {
74         double const vfr = _content->active_video_frame_rate ();
75         int64_t const frame = _next.frames_round (vfr);
76
77         if (frame >= _content->video->length()) {
78                 return true;
79         }
80
81         if (_mono_reader) {
82                 video->give (make_shared<J2KImageProxy> (_mono_reader->get_frame(frame), _size), frame);
83         } else {
84                 video->give (make_shared<J2KImageProxy> (_stereo_reader->get_frame(frame), _size, dcp::EYE_LEFT), frame);
85                 video->give (make_shared<J2KImageProxy> (_stereo_reader->get_frame(frame), _size, dcp::EYE_RIGHT), frame);
86         }
87
88         _next += ContentTime::from_frames (1, vfr);
89         return false;
90 }
91
92 void
93 VideoMXFDecoder::seek (ContentTime t, bool accurate)
94 {
95         video->seek (t, accurate);
96         _next = t;
97 }