Remove some unused methods.
[dcpomatic.git] / src / lib / film.h
index f268bc5b7c6050737c8bb5730d7db8b33ebb71c2..fe1795bd0d2d2b4da589647ccb83c3d622612e18 100644 (file)
@@ -105,7 +105,7 @@ public:
 
        uint64_t required_disk_space () const;
        bool should_be_enough_disk_space (double& required, double& available, bool& can_hard_link) const;
-       
+
        /* Proxies for some Playlist methods */
 
        ContentList content () const;
@@ -121,7 +121,7 @@ public:
                dcp::LocalTime until,
                dcp::Formulation formulation
                ) const;
-       
+
        std::list<dcp::EncryptedKDM> make_kdms (
                std::list<boost::shared_ptr<Screen> >,
                boost::filesystem::path cpl_file,
@@ -140,7 +140,7 @@ public:
        std::vector<std::string> audio_output_names () const;
 
        void repeat_content (ContentList, int);
-       
+
        /** Identifiers for the parts of our state;
            used for signalling changes.
        */
@@ -164,8 +164,6 @@ public:
                THREE_D,
                SEQUENCE_VIDEO,
                INTEROP,
-               /** The setting of _burn_subtitles has changed */
-               BURN_SUBTITLES,
                AUDIO_PROCESSOR,
        };
 
@@ -200,7 +198,7 @@ public:
        bool is_signed () const {
                return _signed;
        }
-       
+
        bool encrypted () const {
                return _encrypted;
        }
@@ -238,14 +236,10 @@ public:
                return _interop;
        }
 
-       bool burn_subtitles () const {
-               return _burn_subtitles;
-       }
-
        AudioProcessor const * audio_processor () const {
                return _audio_processor;
        }
-       
+
 
        /* SET */
 
@@ -273,7 +267,6 @@ public:
        void set_isdcf_date_today ();
        void set_sequence_video (bool);
        void set_interop (bool);
-       void set_burn_subtitles (bool);
        void set_audio_processor (AudioProcessor const * processor);
 
        /** Emitted when some property has of the Film has changed */
@@ -293,7 +286,6 @@ private:
        std::string video_identifier () const;
        void playlist_changed ();
        void playlist_content_changed (boost::weak_ptr<Content>, int, bool frequent);
-       std::string filename_safe_name () const;
        void maybe_add_content (boost::weak_ptr<Job>, boost::weak_ptr<Content>);
 
        /** Log to write to */
@@ -304,7 +296,7 @@ private:
         *  must not be relative.
         */
        boost::filesystem::path _directory;
-       
+
        /** Name for DCP-o-matic */
        std::string _name;
        /** True if a auto-generated ISDCF-compliant name should be used for our DCP */
@@ -334,7 +326,6 @@ private:
        bool _three_d;
        bool _sequence_video;
        bool _interop;
-       bool _burn_subtitles;
        AudioProcessor const * _audio_processor;
 
        int _state_version;