C++11 tidying.
[dcpomatic.git] / test / image_proxy_test.cc
1 /*
2     Copyright (C) 2020-2021 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
22 #include "lib/ffmpeg_image_proxy.h"
23 #include "lib/j2k_image_proxy.h"
24 #include "test.h"
25 #include <boost/test/unit_test.hpp>
26
27
28 using std::make_shared;
29 using std::shared_ptr;
30
31
32 static const boost::filesystem::path data_file0 = TestPaths::private_data() / "player_seek_test_0.png";
33 static const boost::filesystem::path data_file1 = TestPaths::private_data() / "player_seek_test_1.png";
34
35
36 BOOST_AUTO_TEST_CASE (j2k_image_proxy_same_test)
37 {
38         /* The files don't matter here, we just need some data to compare */
39
40         {
41                 auto proxy1 = make_shared<J2KImageProxy>(data_file0, dcp::Size(1998, 1080), AV_PIX_FMT_RGB48);
42                 auto proxy2 = make_shared<J2KImageProxy>(data_file0, dcp::Size(1998, 1080), AV_PIX_FMT_RGB48);
43                 BOOST_CHECK (proxy1->same(proxy2));
44         }
45
46         {
47                 auto proxy1 = make_shared<J2KImageProxy>(data_file0, dcp::Size(1998, 1080), AV_PIX_FMT_RGB48);
48                 auto proxy2 = make_shared<J2KImageProxy>(data_file1, dcp::Size(1998, 1080), AV_PIX_FMT_RGB48);
49                 BOOST_CHECK (!proxy1->same(proxy2));
50         }
51 }
52
53
54 BOOST_AUTO_TEST_CASE (ffmpeg_image_proxy_same_test)
55 {
56         {
57                 auto proxy1 = make_shared<FFmpegImageProxy>(data_file0, VideoRange::FULL);
58                 auto proxy2 = make_shared<FFmpegImageProxy>(data_file0, VideoRange::FULL);
59                 BOOST_CHECK (proxy1->same(proxy2));
60         }
61
62         {
63                 auto proxy1 = make_shared<FFmpegImageProxy>(data_file0, VideoRange::FULL);
64                 auto proxy2 = make_shared<FFmpegImageProxy>(data_file1, VideoRange::FULL);
65                 BOOST_CHECK (!proxy1->same(proxy2));
66         }
67 }
68