test/data updates.
[dcpomatic.git] / test / video_decoder_fill_test.cc
1 /*
2     Copyright (C) 2014 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 #include <boost/test/unit_test.hpp>
21 #include "lib/image_decoder.h"
22 #include "lib/image_content.h"
23 #include "test.h"
24
25 using std::list;
26 using std::cout;
27 using boost::shared_ptr;
28
29 BOOST_AUTO_TEST_CASE (video_decoder_fill_test1)
30 {
31         shared_ptr<Film> film = new_test_film ("video_decoder_fill_test");
32         shared_ptr<ImageContent> c (new ImageContent (film, "test/data/simple_testcard_640x480.png"));
33         ImageDecoder decoder (c);
34
35         decoder.fill_2d (0, 4);
36         BOOST_CHECK_EQUAL (decoder._decoded_video.size(), 4U);
37         list<ContentVideo>::iterator i = decoder._decoded_video.begin();        
38         for (int j = 0; j < 4; ++j) {
39                 BOOST_CHECK_EQUAL (i->frame, j);
40                 ++i;
41         }
42
43         decoder._decoded_video.clear ();
44
45         decoder.fill_2d (0, 7);
46         BOOST_CHECK_EQUAL (decoder._decoded_video.size(), 7);
47         i = decoder._decoded_video.begin();     
48         for (int j = 0; j < 7; ++j) {
49                 BOOST_CHECK_EQUAL (i->frame, j);
50                 ++i;
51         }
52 }
53
54 BOOST_AUTO_TEST_CASE (video_decoder_fill_test2)
55 {
56         shared_ptr<Film> film = new_test_film ("video_decoder_fill_test");
57         shared_ptr<ImageContent> c (new ImageContent (film, "test/data/simple_testcard_640x480.png"));
58         ImageDecoder decoder (c);
59
60         decoder.fill_3d (0, 4, EYES_LEFT);
61         BOOST_CHECK_EQUAL (decoder._decoded_video.size(), 8);
62         list<ContentVideo>::iterator i = decoder._decoded_video.begin();        
63         for (int j = 0; j < 8; ++j) {
64                 BOOST_CHECK_EQUAL (i->frame, j / 2);
65                 BOOST_CHECK_EQUAL (i->eyes, (j % 2) == 0 ? EYES_LEFT : EYES_RIGHT);
66                 ++i;
67         }
68
69         decoder.fill_3d (0, 7, EYES_RIGHT);
70         BOOST_CHECK_EQUAL (decoder._decoded_video.size(), 15);
71         i = decoder._decoded_video.begin();     
72         for (int j = 0; j < 15; ++j) {
73                 BOOST_CHECK_EQUAL (i->frame, j / 2);
74                 BOOST_CHECK_EQUAL (i->eyes, (j % 2) == 0 ? EYES_LEFT : EYES_RIGHT);
75                 ++i;
76         }
77 }