Remove x264 dependency; add options to help building on mageia.
[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 using std::string;
30 using boost::shared_ptr;
31
32 /** @param f Film to compare.
33  *  @param o Options.
34  */
35 ABTranscodeJob::ABTranscodeJob (shared_ptr<Film> f, shared_ptr<const DecodeOptions> od, shared_ptr<const EncodeOptions> oe, shared_ptr<Job> req)
36         : Job (f, req)
37         , _decode_opt (od)
38         , _encode_opt (oe)
39 {
40         _film_b.reset (new Film (*_film));
41         _film_b->set_scaler (Config::instance()->reference_scaler ());
42         _film_b->set_filters (Config::instance()->reference_filters ());
43 }
44
45 string
46 ABTranscodeJob::name () const
47 {
48         return String::compose ("A/B transcode %1", _film->name());
49 }
50
51 void
52 ABTranscodeJob::run ()
53 {
54         try {
55                 /* _film_b is the one with reference filters */
56                 ABTranscoder w (_film_b, _film, _decode_opt, this, shared_ptr<Encoder> (new Encoder (_film, _encode_opt)));
57                 w.go ();
58                 set_progress (1);
59                 set_state (FINISHED_OK);
60
61         } catch (std::exception& e) {
62
63                 set_state (FINISHED_ERROR);
64
65         }
66 }