test/data updates.
[dcpomatic.git] / test / ffmpeg_decoder_seek_test.cc
1 /*
2     Copyright (C) 2014-2015 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 /** @file  test/ffmpeg_decoder_seek_test.cc
21  *  @brief Check that get_video() returns the frame indexes that we ask for
22  *  for FFmpegDecoder.
23  *
24  *  This doesn't check that the contents of those frames are right, which
25  *  it probably should.
26  */
27
28 #include <vector>
29 #include <boost/test/unit_test.hpp>
30 #include <boost/filesystem.hpp>
31 #include "lib/ffmpeg_content.h"
32 #include "lib/ffmpeg_decoder.h"
33 #include "lib/log.h"
34 #include "lib/film.h"
35 #include "test.h"
36
37 using std::cerr;
38 using std::vector;
39 using std::list;
40 using boost::shared_ptr;
41 using boost::optional;
42
43 static void
44 check (shared_ptr<FFmpegDecoder> decoder, int frame)
45 {
46         list<ContentVideo> v;
47         v = decoder->get_video (frame, true);
48         BOOST_CHECK (v.size() == 1);
49         BOOST_CHECK_EQUAL (v.front().frame, frame);
50 }
51
52 static void
53 test (boost::filesystem::path file, vector<int> frames)
54 {
55         boost::filesystem::path path = private_data / file;
56         if (!boost::filesystem::exists (path)) {
57                 cerr << "Skipping test: " << path.string() << " not found.\n";
58                 return;
59         }
60
61         shared_ptr<Film> film = new_test_film ("ffmpeg_decoder_seek_test_" + file.string());
62         shared_ptr<FFmpegContent> content (new FFmpegContent (film, path)); 
63         film->examine_and_add_content (content);
64         wait_for_jobs ();
65         shared_ptr<Log> log (new NullLog);
66         shared_ptr<FFmpegDecoder> decoder (new FFmpegDecoder (content, log));
67
68         for (vector<int>::const_iterator i = frames.begin(); i != frames.end(); ++i) {
69                 check (decoder, *i);
70         }
71 }
72
73 BOOST_AUTO_TEST_CASE (ffmpeg_decoder_seek_test)
74 {
75         vector<int> frames;
76         
77         frames.clear ();
78         frames.push_back (0);
79         frames.push_back (42);
80         frames.push_back (999);
81         frames.push_back (0);
82
83         test ("boon_telly.mkv", frames);
84         test ("Sintel_Trailer1.480p.DivX_Plus_HD.mkv", frames);
85         
86         frames.clear ();
87         frames.push_back (15);
88         frames.push_back (42);
89         frames.push_back (999);
90         frames.push_back (15);
91         
92         test ("prophet_clip.mkv", frames);
93 }
94