Some tidying up. Do encode progress in the writer to improve progress bar movement...
[dcpomatic.git] / src / lib / transcoder.h
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 "types.h"
21
22 /** @file  src/transcoder.h
23  *
24  *  A decoder is selected according to the content type, and the encoder can be specified
25  *  as a parameter to the constructor.
26  */
27
28 class Film;
29 class Job;
30 class Encoder;
31 class Matcher;
32 class VideoFilter;
33 class Gain;
34 class DelayLine;
35 class Player;
36 class Trimmer;
37
38 /** @class Transcoder
39  *
40  *  A decoder is selected according to the content type, and the encoder can be specified
41  *  as a parameter to the constructor.
42  */
43 class Transcoder
44 {
45 public:
46         Transcoder (
47                 boost::shared_ptr<Film> f,
48                 boost::shared_ptr<Job> j
49                 );
50
51         void go ();
52
53         float current_encoding_rate () const;
54         int video_frames_out () const;
55
56 private:
57         /** A Job that is running this Transcoder, or 0 */
58         boost::shared_ptr<Job> _job;
59         boost::shared_ptr<Player> _player;
60         boost::shared_ptr<Encoder> _encoder;
61         boost::shared_ptr<Matcher> _matcher;
62         boost::shared_ptr<DelayLine> _delay_line;
63         boost::shared_ptr<Gain> _gain;
64         boost::shared_ptr<Trimmer> _trimmer;
65 };