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