Merge branch 'subs'
[dcpomatic.git] / src / lib / encoder.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 #ifndef DVDOMATIC_ENCODER_H
21 #define DVDOMATIC_ENCODER_H
22
23 /** @file src/encoder.h
24  *  @brief Parent class for classes which can encode video and audio frames.
25  */
26
27 #include <boost/shared_ptr.hpp>
28 #include <boost/thread/mutex.hpp>
29 #include <list>
30 #include <stdint.h>
31 extern "C" {
32 #include <libavutil/samplefmt.h>
33 }
34
35 class FilmState;
36 class Options;
37 class Image;
38 class Log;
39 class Subtitle;
40
41 /** @class Encoder
42  *  @brief Parent class for classes which can encode video and audio frames.
43  *
44  *  Video is supplied to process_video as YUV frames, and audio
45  *  is supplied as uncompressed PCM in blocks of various sizes.
46  *
47  *  The subclass is expected to encode the video and/or audio in
48  *  some way and write it to disk.
49  */
50
51 class Encoder
52 {
53 public:
54         Encoder (boost::shared_ptr<const FilmState> s, boost::shared_ptr<const Options> o, Log* l);
55
56         /** Called to indicate that a processing run is about to begin */
57         virtual void process_begin (int64_t audio_channel_layout, AVSampleFormat audio_sample_format) = 0;
58
59         /** Called with a frame of video.
60          *  @param i Video frame image.
61          *  @param f Frame number within the film.
62          *  @param s A subtitle that should be on this frame, or 0.
63          */
64         virtual void process_video (boost::shared_ptr<Image> i, int f, boost::shared_ptr<Subtitle> s) = 0;
65
66         /** Called with some audio data.
67          *  @param d Data.
68          *  @param s Size of data (in bytes)
69          */
70         virtual void process_audio (uint8_t* d, int s) = 0;
71
72         /** Called when a processing run has finished */
73         virtual void process_end () = 0;
74
75         float current_frames_per_second () const;
76         bool skipping () const;
77         int last_frame () const;
78
79 protected:
80         void frame_done (int n);
81         void frame_skipped ();
82         
83         /** FilmState of the film that we are encoding */
84         boost::shared_ptr<const FilmState> _fs;
85         /** Options */
86         boost::shared_ptr<const Options> _opt;
87         /** Log */
88         Log* _log;
89
90         /** Mutex for _time_history, _just_skipped and _last_frame */
91         mutable boost::mutex _history_mutex;
92         /** List of the times of completion of the last _history_size frames;
93             first is the most recently completed.
94         */
95         std::list<struct timeval> _time_history;
96         /** Number of frames that we should keep history for */
97         static int const _history_size;
98         /** true if the last frame we processed was skipped (because it was already done) */
99         bool _just_skipped;
100         /** Index of the last frame to be processed */
101         int _last_frame;
102 };
103
104 #endif