c++11 bits in examples/
[libdcp.git] / examples / read_dcp.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /* If you are using an installed libdcp, these #includes would need to be changed to
21 #include <dcp/dcp.h>
22 #include <dcp/picture_asset.h>
23 ... etc. ...
24 */
25
26 #include "dcp.h"
27 #include "cpl.h"
28 #include "reel.h"
29 #include "reel_picture_asset.h"
30 #include "mono_picture_frame.h"
31 #include "mono_picture_asset.h"
32 #include "mono_picture_asset_reader.h"
33 #include "stereo_picture_asset.h"
34 #include "sound_asset.h"
35 #include "subtitle_asset.h"
36 #include "openjpeg_image.h"
37 #include "colour_conversion.h"
38 #include "rgb_xyz.h"
39 #include <Magick++.h>
40 #include <boost/scoped_array.hpp>
41
42 /** @file examples/read_dcp.cc
43  *  @brief Shows how to read a DCP.
44  */
45
46 int
47 main ()
48 {
49         /* Create a DCP, specifying where our existing data is */
50         dcp::DCP dcp ("/home/carl/diagonal.com/APPASSIONATA_TLR_F_UK-DEFR_CH_51_2K_LOK_20121115_DGL_OV");
51         /* Read the DCP to find out about it */
52         dcp.read ();
53
54         if (dcp.all_encrypted()) {
55                 std::cout << "DCP is encrypted.\n";
56         } else if (dcp.any_encrypted()) {
57                 std::cout << "DCP is partially encrypted.\n";
58         } else {
59                 std::cout << "DCP is not encrypted.\n";
60         }
61
62         std::cout << "DCP has " << dcp.cpls().size() << " CPLs.\n";
63         auto assets = dcp.assets ();
64         std::cout << "DCP has " << assets.size() << " assets.\n";
65         for (auto i: assets) {
66                 if (std::dynamic_pointer_cast<dcp::MonoPictureAsset>(i)) {
67                         std::cout << "2D picture\n";
68                 } else if (std::dynamic_pointer_cast<dcp::StereoPictureAsset>(i)) {
69                         std::cout << "3D picture\n";
70                 } else if (std::dynamic_pointer_cast<dcp::SoundAsset>(i)) {
71                         std::cout << "Sound\n";
72                 } else if (std::dynamic_pointer_cast<dcp::SubtitleAsset>(i)) {
73                         std::cout << "Subtitle\n";
74                 } else if (std::dynamic_pointer_cast<dcp::CPL>(i)) {
75                         std::cout << "CPL\n";
76                 }
77                 std::cout << "\t" << i->file()->leaf().string() << "\n";
78         }
79
80         /* Take the first CPL */
81         auto cpl = dcp.cpls().front();
82
83         /* Get the picture asset in the first reel */
84         auto picture_asset = std::dynamic_pointer_cast<dcp::MonoPictureAsset>(
85                 cpl->reels()[0]->main_picture()->asset()
86                 );
87
88         /* Get a reader for it */
89         auto picture_asset_reader = picture_asset->start_read();
90
91         /* Get the 1000th frame of it */
92         auto picture_frame_j2k = picture_asset_reader->get_frame(999);
93
94         /* Get the frame as an XYZ image */
95         auto picture_image_xyz = picture_frame_j2k->xyz_image ();
96
97         /* Convert to ARGB */
98         boost::scoped_array<uint8_t> rgba (new uint8_t[picture_image_xyz->size().width * picture_image_xyz->size().height * 4]);
99         dcp::xyz_to_rgba (picture_image_xyz, dcp::ColourConversion::srgb_to_xyz(), rgba.get(), picture_image_xyz->size().width * 4);
100
101         Magick::Image image (picture_image_xyz->size().width, picture_image_xyz->size().height, "BGRA", Magick::CharPixel, rgba.get ());
102         image.write ("frame.png");
103
104         return 0;
105 }