Bump version
[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 Film and some Options, then uses those to transcode the 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 <boost/signals2.hpp>
29 #include "transcoder.h"
30 #include "encoder.h"
31 #include "decoder_factory.h"
32 #include "film.h"
33 #include "matcher.h"
34 #include "delay_line.h"
35 #include "options.h"
36 #include "gain.h"
37 #include "video_decoder.h"
38 #include "audio_decoder.h"
39
40 using std::string;
41 using boost::shared_ptr;
42 using boost::dynamic_pointer_cast;
43
44 /** Construct a transcoder using a Decoder that we create and a supplied Encoder.
45  *  @param f Film that we are transcoding.
46  *  @param o Decode options.
47  *  @param j Job that we are running under, or 0.
48  *  @param e Encoder to use.
49  */
50 Transcoder::Transcoder (shared_ptr<Film> f, DecodeOptions o, Job* j, shared_ptr<Encoder> e)
51         : _job (j)
52         , _encoder (e)
53         , _decoders (decoder_factory (f, o))
54 {
55         assert (_encoder);
56
57         shared_ptr<AudioStream> st = f->audio_stream();
58         _matcher.reset (new Matcher (f->log(), st->sample_rate(), f->source_frame_rate()));
59         _delay_line.reset (new DelayLine (f->log(), f->audio_delay() / 1000.0f));
60         _gain.reset (new Gain (f->log(), f->audio_gain()));
61
62         /* Set up the decoder to use the film's set streams */
63         _decoders.video->set_subtitle_stream (f->subtitle_stream ());
64         _decoders.audio->set_audio_stream (f->audio_stream ());
65
66         _decoders.video->connect_video (_delay_line);
67         _delay_line->connect_video (_matcher);
68         _matcher->connect_video (_encoder);
69         
70         _decoders.audio->connect_audio (_delay_line);
71         _delay_line->connect_audio (_matcher);
72         _matcher->connect_audio (_gain);
73         _gain->connect_audio (_encoder);
74 }
75
76 /** Run the decoder, passing its output to the encoder, until the decoder
77  *  has no more data to present.
78  */
79 void
80 Transcoder::go ()
81 {
82         _encoder->process_begin ();
83         try {
84                 bool done[2] = { false, false };
85                 
86                 while (1) {
87                         if (!done[0]) {
88                                 done[0] = _decoders.video->pass ();
89                                 if (_job) {
90                                         _decoders.video->set_progress (_job);
91                                 }
92                         }
93
94                         if (!done[1] && _decoders.audio && dynamic_pointer_cast<Decoder> (_decoders.audio) != dynamic_pointer_cast<Decoder> (_decoders.video)) {
95                                 done[1] = _decoders.audio->pass ();
96                         } else {
97                                 done[1] = true;
98                         }
99
100                         if (done[0] && done[1]) {
101                                 break;
102                         }
103                 }
104                 
105         } catch (...) {
106                 _encoder->process_end ();
107                 throw;
108         }
109         
110         _delay_line->process_end ();
111         _matcher->process_end ();
112         _gain->process_end ();
113         _encoder->process_end ();
114 }