diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-05-10 11:54:19 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-05-10 11:54:19 +0100 |
| commit | d8ea1796f34ff894b148a0af78c0a547e0496ee1 (patch) | |
| tree | 2a3177217dee39c1a4dbe795c21369236e7a5533 /src/lib/dcp_encoder.h | |
| parent | 7f40b703e8a83f07a1c8bffb45cd40ebcc238418 (diff) | |
Rename some classes.
Diffstat (limited to 'src/lib/dcp_encoder.h')
| -rw-r--r-- | src/lib/dcp_encoder.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/lib/dcp_encoder.h b/src/lib/dcp_encoder.h new file mode 100644 index 000000000..387921972 --- /dev/null +++ b/src/lib/dcp_encoder.h @@ -0,0 +1,60 @@ +/* + Copyright (C) 2012-2017 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + +#include "types.h" +#include "player_subtitles.h" +#include "encoder.h" +#include <boost/weak_ptr.hpp> + +class Film; +class J2KEncoder; +class Player; +class Writer; +class Job; +class PlayerVideo; +class AudioBuffers; + +/** @class DCPEncoder */ +class DCPEncoder : public Encoder +{ +public: + DCPEncoder (boost::shared_ptr<const Film> film, boost::weak_ptr<Job> job); + + void go (); + + float current_rate () const; + Frame frames_done () const; + + /** @return true if we are in the process of calling Encoder::process_end */ + bool finishing () const { + return _finishing; + } + +private: + + void video (boost::shared_ptr<PlayerVideo>, DCPTime); + void audio (boost::shared_ptr<AudioBuffers>, DCPTime); + void subtitle (PlayerSubtitles, DCPTimePeriod); + + boost::shared_ptr<Writer> _writer; + boost::shared_ptr<J2KEncoder> _j2k_encoder; + bool _finishing; + bool _non_burnt_subtitles; +}; |
