Change video content scaling so that it either:
[dcpomatic.git] / test / ffmpeg_decoder_sequential_test.cc
1 /*
2     Copyright (C) 2014 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 /** @file  test/ffmpeg_decoder_sequential_test.cc
22  *  @brief Check that the FFmpeg decoder and Player produce sequential frames without gaps or dropped frames;
23  *  Also that the decoder picks up frame rates correctly.
24  *  @ingroup specific
25  */
26
27 #include "lib/ffmpeg_content.h"
28 #include "lib/ffmpeg_decoder.h"
29 #include "lib/content_video.h"
30 #include "lib/video_decoder.h"
31 #include "lib/film.h"
32 #include "lib/player_video.h"
33 #include "lib/player.h"
34 #include "test.h"
35 #include <boost/filesystem.hpp>
36 #include <boost/test/unit_test.hpp>
37 #include <iostream>
38
39 using std::cout;
40 using std::cerr;
41 using std::list;
42 using boost::shared_ptr;
43 using boost::optional;
44 using boost::bind;
45 using namespace dcpomatic;
46
47 static DCPTime next;
48 static DCPTime frame;
49
50 static void
51 check (shared_ptr<PlayerVideo>, DCPTime time)
52 {
53         BOOST_REQUIRE (time == next);
54         next += frame;
55 }
56
57 void
58 ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int video_length)
59 {
60         boost::filesystem::path path = TestPaths::private_data / file;
61         BOOST_REQUIRE (boost::filesystem::exists (path));
62
63         shared_ptr<Film> film = new_test_film ("ffmpeg_decoder_sequential_test_" + file.string());
64         shared_ptr<FFmpegContent> content (new FFmpegContent(path));
65         film->examine_and_add_content (content);
66         BOOST_REQUIRE (!wait_for_jobs());
67         film->write_metadata ();
68         shared_ptr<Player> player (new Player(film));
69
70         BOOST_REQUIRE (content->video_frame_rate());
71         BOOST_CHECK_CLOSE (content->video_frame_rate().get(), fps, 0.01);
72
73         player->Video.connect (bind (&check, _1, _2));
74
75         next = DCPTime ();
76         frame = DCPTime::from_frames (1, film->video_frame_rate ());
77         while (!player->pass()) {}
78         BOOST_REQUIRE (next == DCPTime::from_frames (video_length, film->video_frame_rate()));
79 }
80
81 BOOST_AUTO_TEST_CASE (ffmpeg_decoder_sequential_test)
82 {
83         ffmpeg_decoder_sequential_test_one ("boon_telly.mkv", 29.97, 6912);
84         ffmpeg_decoder_sequential_test_one ("Sintel_Trailer1.480p.DivX_Plus_HD.mkv", 24, 1253);
85         ffmpeg_decoder_sequential_test_one ("prophet_long_clip.mkv", 23.976, 2879);
86 }