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