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