Various stuff; mostly change to decoder scaling and adding subtitle; scaling test.
[dcpomatic.git] / test / ratio_test.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 using std::ostream;
21
22 namespace libdcp {
23         
24 ostream&
25 operator<< (ostream& s, libdcp::Size const & t)
26 {
27         s << t.width << "x" << t.height;
28         return s;
29 }
30
31 }
32
33 BOOST_AUTO_TEST_CASE (ratio_test)
34 {
35         Ratio::setup_ratios ();
36
37         Ratio const * r = Ratio::from_id ("119");
38         BOOST_CHECK (r);
39         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (1285, 1080));
40
41         r = Ratio::from_id ("133");
42         BOOST_CHECK (r);
43         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (1436, 1080));
44
45         r = Ratio::from_id ("137");
46         BOOST_CHECK (r);
47         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (1480, 1080));
48
49         r = Ratio::from_id ("138");
50         BOOST_CHECK (r);
51         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (1485, 1080));
52
53         r = Ratio::from_id ("166");
54         BOOST_CHECK (r);
55         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (1793, 1080));
56
57         r = Ratio::from_id ("178");
58         BOOST_CHECK (r);
59         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (1920, 1080));
60
61         r = Ratio::from_id ("185");
62         BOOST_CHECK (r);
63         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (1998, 1080));
64
65         r = Ratio::from_id ("239");
66         BOOST_CHECK (r);
67         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (2048, 858));
68
69         r = Ratio::from_id ("full-frame");
70         BOOST_CHECK (r);
71         BOOST_CHECK_EQUAL (r->size(libdcp::Size (2048, 1080)), libdcp::Size (2048, 1080));
72 }
73