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