19d06714996d442d18f2fd5b30da0475bf134d3b
[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 #include "playlist.h"
40
41 using std::string;
42 using boost::shared_ptr;
43 using boost::dynamic_pointer_cast;
44
45 /** Construct a transcoder using a Decoder that we create and a supplied Encoder.
46  *  @param f Film that we are transcoding.
47  *  @param o Decode options.
48  *  @param j Job that we are running under, or 0.
49  *  @param e Encoder to use.
50  */
51 Transcoder::Transcoder (shared_ptr<Film> f, DecodeOptions o, shared_ptr<Job> j)
52         : _job (j)
53         , _playlist (f->playlist ())
54         , _encoder (new Encoder (f, _playlist))
55 {
56         if (_playlist->has_audio ()) {
57                 _matcher.reset (new Matcher (f->log(), _playlist->audio_frame_rate(), _playlist->video_frame_rate()));
58                 _delay_line.reset (new DelayLine (f->log(), _playlist->audio_channels(), f->audio_delay() * _playlist->audio_frame_rate() / 1000));
59                 _gain.reset (new Gain (f->log(), f->audio_gain()));
60         }
61
62         if (_matcher) {
63                 _playlist->connect_video (_matcher);
64                 _matcher->connect_video (_encoder);
65         } else {
66                 _playlist->connect_video (_encoder);
67         }
68         
69         if (_matcher && _delay_line && _playlist->has_audio ()) {
70                 _playlist->connect_audio (_delay_line);
71                 _delay_line->connect_audio (_matcher);
72                 _matcher->connect_audio (_gain);
73                 _gain->connect_audio (_encoder);
74         }
75 }
76
77 void
78 Transcoder::go ()
79 {
80         _encoder->process_begin ();
81         try {
82                 while (1) {
83                         if (_playlist->pass ()) {
84                                 break;
85                         }
86                         _playlist->set_progress (_job);
87                 }
88                 
89         } catch (...) {
90                 _encoder->process_end ();
91                 throw;
92         }
93         
94         if (_delay_line) {
95                 _delay_line->process_end ();
96         }
97         if (_matcher) {
98                 _matcher->process_end ();
99         }
100         if (_gain) {
101                 _gain->process_end ();
102         }
103         _encoder->process_end ();
104 }