6a27d698f5713997c0c0fd4d7e68caec77e8831c
[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 produces sequential frames without gaps or dropped frames;
23  *  (dropped frames being checked by assert() in VideoDecoder).  Also that the decoder picks up frame rates correctly.
24  */
25
26 #include "lib/ffmpeg_content.h"
27 #include "lib/ffmpeg_decoder.h"
28 #include "lib/null_log.h"
29 #include "lib/content_video.h"
30 #include "lib/video_decoder.h"
31 #include "lib/film.h"
32 #include "test.h"
33 #include <boost/filesystem.hpp>
34 #include <boost/test/unit_test.hpp>
35 #include <iostream>
36
37 using std::cout;
38 using std::cerr;
39 using std::list;
40 using boost::shared_ptr;
41 using boost::optional;
42
43 void
44 ffmpeg_decoder_sequential_test_one (boost::filesystem::path file, float fps, int gaps, int video_length)
45 {
46         boost::filesystem::path path = private_data / file;
47         if (!boost::filesystem::exists (path)) {
48                 cerr << "Skipping test: " << path.string() << " not found.\n";
49                 return;
50         }
51
52         shared_ptr<Film> film = new_test_film ("ffmpeg_decoder_seek_test_" + file.string());
53         shared_ptr<FFmpegContent> content (new FFmpegContent (film, path));
54         film->examine_and_add_content (content);
55         wait_for_jobs ();
56         shared_ptr<Log> log (new NullLog);
57         shared_ptr<FFmpegDecoder> decoder (new FFmpegDecoder (content, log, false));
58
59         BOOST_REQUIRE (decoder->video->_content->video_frame_rate());
60         BOOST_CHECK_CLOSE (decoder->video->_content->video_frame_rate().get(), fps, 0.01);
61
62 #ifdef DCPOMATIC_DEBUG
63         decoder->video->test_gaps = 0;
64 #endif
65         for (Frame i = 0; i < video_length; ++i) {
66                 list<ContentVideo> v;
67                 v = decoder->video->get (i, true);
68                 BOOST_REQUIRE_EQUAL (v.size(), 1U);
69                 BOOST_CHECK_EQUAL (v.front().frame.index(), i);
70         }
71 #ifdef DCPOMATIC_DEBUG
72         BOOST_CHECK_EQUAL (decoder->video->test_gaps, gaps);
73 #endif
74 }
75
76 BOOST_AUTO_TEST_CASE (ffmpeg_decoder_sequential_test)
77 {
78         ffmpeg_decoder_sequential_test_one ("boon_telly.mkv", 29.97, 0, 6910);
79         ffmpeg_decoder_sequential_test_one ("Sintel_Trailer1.480p.DivX_Plus_HD.mkv", 24, 0, 1248);
80         /* The first video frame is 12 here, so VideoDecoder should see 12 gaps
81            (at the start of the file)
82         */
83         ffmpeg_decoder_sequential_test_one ("prophet_clip.mkv", 23.976, 12, 2875);
84 }