Fix build again.
[dcpomatic.git] / src / lib / ab_transcode_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 #include <stdexcept>
21 #include "ab_transcode_job.h"
22 #include "film.h"
23 #include "format.h"
24 #include "filter.h"
25 #include "ab_transcoder.h"
26 #include "config.h"
27 #include "encoder.h"
28 #include "log.h"
29
30 #include "i18n.h"
31
32 using std::string;
33 using boost::shared_ptr;
34
35 /** @param f Film to compare.
36  *  @param o Decode options.
37  */
38 ABTranscodeJob::ABTranscodeJob (shared_ptr<Film> f, DecodeOptions o)
39         : Job (f)
40         , _decode_opt (o)
41 {
42         _film_b.reset (new Film (*_film));
43         _film_b->set_scaler (Config::instance()->reference_scaler ());
44         _film_b->set_filters (Config::instance()->reference_filters ());
45 }
46
47 string
48 ABTranscodeJob::name () const
49 {
50         return String::compose (_("A/B transcode %1"), _film->name());
51 }
52
53 void
54 ABTranscodeJob::run ()
55 {
56         try {
57                 /* _film_b is the one with reference filters */
58                 ABTranscoder w (_film_b, _film, _decode_opt, this, shared_ptr<Encoder> (new Encoder (_film)));
59                 w.go ();
60                 set_progress (1);
61                 set_state (FINISHED_OK);
62
63                 _film->log()->log ("A/B transcode job completed successfully");
64
65         } catch (std::exception& e) {
66
67                 set_progress (1);
68                 set_state (FINISHED_ERROR);
69                 _film->log()->log (String::compose ("A/B transcode job failed (%1)", e.what()));
70                 throw;
71         }
72 }