Various playlist editor developments and fixes.
[dcpomatic.git] / test / burnt_subtitle_test.cc
1 /*
2     Copyright (C) 2014-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 /** @file  test/burnt_subtitle_test.cc
22  *  @brief Test the burning of subtitles into the DCP.
23  *  @ingroup specific
24  */
25
26 #include "lib/plain_text_content.h"
27 #include "lib/dcp_text_content.h"
28 #include "lib/film.h"
29 #include "lib/ratio.h"
30 #include "lib/dcp_content_type.h"
31 #include "lib/text_content.h"
32 #include "lib/dcp_content.h"
33 #include "lib/content_factory.h"
34 #include "lib/config.h"
35 #include "lib/log_entry.h"
36 #include "test.h"
37 #include <dcp/dcp.h>
38 #include <dcp/cpl.h>
39 #include <dcp/reel.h>
40 #include <dcp/j2k.h>
41 #include <dcp/mono_picture_asset.h>
42 #include <dcp/mono_picture_asset_reader.h>
43 #include <dcp/mono_picture_frame.h>
44 #include <dcp/openjpeg_image.h>
45 #include <dcp/reel_picture_asset.h>
46 #include <dcp/reel_mono_picture_asset.h>
47 #include <boost/test/unit_test.hpp>
48 #include <iostream>
49
50 using std::cout;
51 using std::map;
52 using boost::shared_ptr;
53 using boost::dynamic_pointer_cast;
54 using namespace dcpomatic;
55
56 /** Build a small DCP with no picture and a single subtitle overlaid onto it from a SubRip file */
57 BOOST_AUTO_TEST_CASE (burnt_subtitle_test_subrip)
58 {
59         shared_ptr<Film> film = new_test_film ("burnt_subtitle_test_subrip");
60         film->set_container (Ratio::from_id ("185"));
61         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
62         film->set_name ("frobozz");
63         shared_ptr<StringText> content (new StringText (film, "test/data/subrip2.srt"));
64         content->subtitle->set_use (true);
65         content->subtitle->set_burn (true);
66         film->examine_and_add_content (content);
67         BOOST_REQUIRE (!wait_for_jobs());
68         film->make_dcp ();
69         BOOST_REQUIRE (!wait_for_jobs());
70
71         check_dcp ("test/data/burnt_subtitle_test_subrip", film->dir (film->dcp_name ()));
72 }
73
74 /** Build a small DCP with no picture and a single subtitle overlaid onto it from a DCP XML file */
75 BOOST_AUTO_TEST_CASE (burnt_subtitle_test_dcp)
76 {
77         shared_ptr<Film> film = new_test_film ("burnt_subtitle_test_dcp");
78         film->set_container (Ratio::from_id ("185"));
79         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
80         film->set_name ("frobozz");
81         shared_ptr<DCPTextContent> content (new DCPTextContent (film, "test/data/dcp_sub.xml"));
82         content->subtitle->set_use (true);
83         film->examine_and_add_content (content);
84         BOOST_REQUIRE (!wait_for_jobs());
85         film->make_dcp ();
86         BOOST_REQUIRE (!wait_for_jobs());
87
88         check_dcp ("test/data/burnt_subtitle_test_dcp", film->dir (film->dcp_name ()));
89 }
90
91 /** Burn some subtitles into an existing DCP to check the colour conversion */
92 BOOST_AUTO_TEST_CASE (burnt_subtitle_test_onto_dcp)
93 {
94         shared_ptr<Film> film = new_test_film ("burnt_subtitle_test_onto_dcp");
95         film->set_container (Ratio::from_id ("185"));
96         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
97         film->set_name ("frobozz");
98         film->examine_and_add_content (content_factory(film, "test/data/flat_black.png").front());
99         BOOST_REQUIRE (!wait_for_jobs());
100         film->make_dcp ();
101         BOOST_REQUIRE (!wait_for_jobs());
102
103         Config::instance()->set_log_types (Config::instance()->log_types() | LogEntry::TYPE_DEBUG_ENCODE);
104         shared_ptr<Film> film2 = new_test_film ("burnt_subtitle_test_onto_dcp2");
105         film2->set_container (Ratio::from_id ("185"));
106         film2->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
107         film2->set_name ("frobozz");
108         shared_ptr<DCPContent> background_dcp (new DCPContent(film2, film->dir(film->dcp_name())));
109         film2->examine_and_add_content (background_dcp);
110         shared_ptr<StringText> sub = dynamic_pointer_cast<StringText> (
111                 content_factory(film2, "test/data/subrip2.srt").front()
112                 );
113         sub->subtitle->set_burn (true);
114         sub->subtitle->set_outline (true);
115         film2->examine_and_add_content (sub);
116         BOOST_REQUIRE (!wait_for_jobs());
117         film2->make_dcp ();
118         BOOST_REQUIRE (!wait_for_jobs());
119
120         BOOST_CHECK (background_dcp->position() == DCPTime());
121         BOOST_CHECK (sub->position() == DCPTime());
122
123         dcp::DCP dcp (film2->dir (film2->dcp_name ()));
124         dcp.read ();
125         BOOST_REQUIRE_EQUAL (dcp.cpls().size(), 1);
126         BOOST_REQUIRE_EQUAL (dcp.cpls().front()->reels().size(), 1);
127         BOOST_REQUIRE (dcp.cpls().front()->reels().front()->main_picture());
128         BOOST_REQUIRE (dcp.cpls().front()->reels().front()->main_picture()->asset());
129         shared_ptr<const dcp::MonoPictureAsset> pic = dynamic_pointer_cast<dcp::ReelMonoPictureAsset> (
130                 dcp.cpls().front()->reels().front()->main_picture()
131                 )->mono_asset();
132         BOOST_REQUIRE (pic);
133         shared_ptr<const dcp::MonoPictureFrame> frame = pic->start_read()->get_frame (12);
134         shared_ptr<dcp::OpenJPEGImage> xyz = frame->xyz_image ();
135         BOOST_CHECK_EQUAL (xyz->size().width, 1998);
136         BOOST_CHECK_EQUAL (xyz->size().height, 1080);
137
138         check_dcp ("test/data/burnt_subtitle_test_onto_dcp", film->dir(film->dcp_name()));
139 }