Pass options only to jobs that need them.
[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 #include "imagemagick_encoder.h"
30 #include "transcoder.h"
31
32 using namespace std;
33 using namespace boost;
34
35 ExamineContentJob::ExamineContentJob (shared_ptr<const FilmState> fs, Log* l, shared_ptr<Job> req)
36         : Job (fs, l, req)
37 {
38
39 }
40
41 ExamineContentJob::~ExamineContentJob ()
42 {
43 }
44
45 string
46 ExamineContentJob::name () const
47 {
48         return String::compose ("Examine content of %1", _fs->name());
49 }
50
51 void
52 ExamineContentJob::run ()
53 {
54         shared_ptr<FilmState> fs = _fs->state_copy ();
55         
56         /* Decode the content to get an accurate length */
57         
58         shared_ptr<Options> o (new Options ("", "", ""));
59         o->out_size = Size (512, 512);
60         o->apply_crop = false;
61
62         descend (0.5);
63
64         _decoder = decoder_factory (fs, o, this, _log, true, true);
65         _decoder->go ();
66         fs->set_length (last_video_frame ());
67
68         ascend ();
69
70         /* Now make thumbnails for it */
71
72         descend (0.5);
73
74         try {
75                 o.reset (new Options (fs->dir ("thumbs"), ".png", ""));
76                 o->out_size = fs->size ();
77                 o->apply_crop = false;
78                 o->decode_audio = false;
79                 o->decode_video_frequency = 128;
80                 o->decode_subtitles = true;
81                 shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (fs, o, _log));
82                 Transcoder w (fs, o, this, _log, e);
83                 w.go ();
84                 set_progress (1);
85                 set_state (FINISHED_OK);
86                 
87         } catch (std::exception& e) {
88
89                 ascend ();
90                 set_progress (1);
91                 set_error (e.what ());
92                 set_state (FINISHED_ERROR);
93                 
94         }
95
96         ascend ();
97         set_progress (1);
98         set_state (FINISHED_OK);
99 }
100
101 int
102 ExamineContentJob::last_video_frame () const
103 {
104         return _decoder->last_video_frame ();
105 }