Re-work again so that there's just one encoder; various tweaks to still-image-with...
[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 <boost/thread/condition.hpp>
30 #include <boost/thread.hpp>
31 #include <list>
32 #include <stdint.h>
33 extern "C" {
34 #include <libavutil/samplefmt.h>
35 }
36 #ifdef HAVE_SWRESAMPLE
37 extern "C" {
38 #include <libswresample/swresample.h>
39 }
40 #endif
41 #include <sndfile.h>
42 #include "util.h"
43 #include "video_sink.h"
44 #include "audio_sink.h"
45
46 class EncodeOptions;
47 class Image;
48 class Subtitle;
49 class AudioBuffers;
50 class Film;
51 class ServerDescription;
52 class DCPVideoFrame;
53
54 /** @class Encoder
55  *  @brief Encoder to J2K and WAV for DCP.
56  *
57  *  Video is supplied to process_video as YUV frames, and audio
58  *  is supplied as uncompressed PCM in blocks of various sizes.
59  */
60
61 class Encoder : public VideoSink, public AudioSink
62 {
63 public:
64         Encoder (boost::shared_ptr<const Film> f, boost::shared_ptr<const EncodeOptions> o);
65         virtual ~Encoder ();
66
67         /** Called to indicate that a processing run is about to begin */
68         virtual void process_begin ();
69
70         /** Call with a frame of video.
71          *  @param i Video frame image.
72          *  @param same true if i is the same as the last time we were called.
73          *  @param s A subtitle that should be on this frame, or 0.
74          */
75         void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s);
76
77         /** Call with some audio data */
78         void process_audio (boost::shared_ptr<AudioBuffers>);
79
80         /** Called when a processing run has finished */
81         virtual void process_end ();
82
83         float current_frames_per_second () const;
84         bool skipping () const;
85         SourceFrame video_frame () const;
86
87 protected:
88         
89         void frame_done ();
90         void frame_skipped ();
91         
92         /** Film that we are encoding */
93         boost::shared_ptr<const Film> _film;
94         /** Options */
95         boost::shared_ptr<const EncodeOptions> _opt;
96
97         /** Mutex for _time_history, _just_skipped and _last_frame */
98         mutable boost::mutex _history_mutex;
99         /** List of the times of completion of the last _history_size frames;
100             first is the most recently completed.
101         */
102         std::list<struct timeval> _time_history;
103         /** Number of frames that we should keep history for */
104         static int const _history_size;
105         /** true if the last frame we processed was skipped (because it was already done) */
106         bool _just_skipped;
107
108         /** Number of video frames received so far */
109         SourceFrame _video_frame;
110         /** Number of audio frames received so far */
111         int64_t _audio_frame;
112
113 private:
114         void close_sound_files ();
115         void write_audio (boost::shared_ptr<const AudioBuffers> audio);
116
117         void encoder_thread (ServerDescription *);
118         void terminate_worker_threads ();
119         void link (std::string, std::string) const;
120
121 #if HAVE_SWRESAMPLE     
122         SwrContext* _swr_context;
123 #endif  
124
125         std::vector<SNDFILE*> _sound_files;
126         int64_t _audio_frames_written;
127
128         boost::optional<int> _last_real_frame;
129         bool _process_end;
130         std::list<boost::shared_ptr<DCPVideoFrame> > _queue;
131         std::list<boost::thread *> _worker_threads;
132         mutable boost::mutex _worker_mutex;
133         boost::condition _worker_condition;
134 };
135
136 #endif