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