Move things round a bit.
[dcpomatic.git] / src / lib / transcoder.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 /** @file  src/transcoder.cc
21  *  @brief A class which takes a FilmState and some Options, then uses those to transcode a Film.
22  *
23  *  A decoder is selected according to the content type, and the encoder can be specified
24  *  as a parameter to the constructor.
25  */
26
27 #include <iostream>
28 #include <sigc++/signal.h>
29 #include "transcoder.h"
30 #include "encoder.h"
31 #include "decoder_factory.h"
32
33 using namespace std;
34 using namespace boost;
35
36 /** Construct a transcoder using a Decoder that we create and a supplied Encoder.
37  *  @param s FilmState of Film that we are transcoding.
38  *  @param o Options.
39  *  @param j Job that we are running under, or 0.
40  *  @param l Log that we can write to.
41  *  @param e Encoder to use.
42  */
43 Transcoder::Transcoder (shared_ptr<const FilmState> s, shared_ptr<const Options> o, Job* j, Log* l, shared_ptr<Encoder> e)
44         : _job (j)
45         , _encoder (e)
46         , _decoder (decoder_factory (s, o, j, l))
47 {
48         assert (_encoder);
49         
50         _decoder->Video.connect (sigc::mem_fun (*e, &Encoder::process_video));
51         _decoder->Audio.connect (sigc::mem_fun (*e, &Encoder::process_audio));
52 }
53
54 /** Run the decoder, passing its output to the encoder, until the decoder
55  *  has no more data to present.
56  */
57 void
58 Transcoder::go ()
59 {
60         _encoder->process_begin ();
61         try {
62                 _decoder->go ();
63         } catch (...) {
64                 /* process_end() is important as the decoder may have worker
65                    threads that need to be cleaned up.
66                 */
67                 _encoder->process_end ();
68                 throw;
69         }
70
71         _encoder->process_end ();
72 }