summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-11-23 13:58:33 +0100
committerCarl Hetherington <cth@carlh.net>2020-11-23 13:58:33 +0100
commita332bd6be323f03dad5b180fb237afe54f1bf81e (patch)
tree70cf0da21c95941cda478717b15ea71aca4c0bdb /src/lib/ffmpeg_content.h
parent1c11eaf92c5d592be6df07e2ac77cfcf65e3ed0c (diff)
Remove swaroop variant.
Diffstat (limited to 'src/lib/ffmpeg_content.h')
-rw-r--r--src/lib/ffmpeg_content.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/lib/ffmpeg_content.h b/src/lib/ffmpeg_content.h
index cf1849971..f933e4195 100644
--- a/src/lib/ffmpeg_content.h
+++ b/src/lib/ffmpeg_content.h
@@ -21,9 +21,6 @@
#ifndef DCPOMATIC_FFMPEG_CONTENT_H
#define DCPOMATIC_FFMPEG_CONTENT_H
-#ifdef DCPOMATIC_VARIANT_SWAROOP
-#include "encrypted_ecinema_kdm.h"
-#endif
#include "content.h"
#include "audio_stream.h"
@@ -102,27 +99,6 @@ public:
void signal_subtitle_stream_changed ();
-#ifdef DCPOMATIC_VARIANT_SWAROOP
-
- bool encrypted () const {
- boost::mutex::scoped_lock lm (_mutex);
- return _encrypted;
- }
-
- void add_kdm (EncryptedECinemaKDM kdm);
-
- boost::optional<EncryptedECinemaKDM> kdm () const {
- return _kdm;
- }
-
- boost::optional<std::string> id () const {
- return _id;
- }
-
- bool kdm_timing_window_valid () const;
-
-#endif
-
private:
void add_properties (boost::shared_ptr<const Film> film, std::list<UserProperty> &) const;
@@ -140,11 +116,6 @@ private:
boost::optional<AVColorTransferCharacteristic> _color_trc;
boost::optional<AVColorSpace> _colorspace;
boost::optional<int> _bits_per_pixel;
-#ifdef DCPOMATIC_VARIANT_SWAROOP
- bool _encrypted;
- boost::optional<EncryptedECinemaKDM> _kdm;
- boost::optional<std::string> _id;
-#endif
};
#endif