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