Move things round a bit.
[dcpomatic.git] / src / lib / examine_content_job.cc
1 /*
2     Copyright (C) 2012 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  src/examine_content_job.cc
21  *  @brief A class to run through content at high speed to find its length.
22  */
23
24 #include "examine_content_job.h"
25 #include "options.h"
26 #include "film_state.h"
27 #include "decoder_factory.h"
28 #include "decoder.h"
29
30 using namespace std;
31 using namespace boost;
32
33 ExamineContentJob::ExamineContentJob (shared_ptr<const FilmState> fs, Log* l)
34         : Job (fs, shared_ptr<Options> (), l)
35 {
36
37 }
38
39 ExamineContentJob::~ExamineContentJob ()
40 {
41 }
42
43 string
44 ExamineContentJob::name () const
45 {
46         stringstream s;
47         s << "Examine content of " << _fs->name;
48         return s.str ();
49 }
50
51 void
52 ExamineContentJob::run ()
53 {
54         shared_ptr<Options> o (new Options ("", "", ""));
55         o->out_size = Size (512, 512);
56         o->apply_crop = false;
57
58         _decoder = decoder_factory (_fs, o, this, _log, true, true);
59         _decoder->go ();
60         
61         set_progress (1);
62         set_state (FINISHED_OK);
63 }
64
65 int
66 ExamineContentJob::last_video_frame () const
67 {
68         return _decoder->last_video_frame ();
69 }