Remove scale to fit {width,height} options.
[dcpomatic.git] / src / lib / video_content.h
index 6386754de86faa08601955e796e458a2a21f7267..9a7ad6dda5ae00c63da96ef885a57d1fefc7131e 100644 (file)
@@ -173,9 +173,6 @@ public:
 
        boost::optional<double> fade (boost::shared_ptr<const Film> film, Frame) const;
 
-       void scale_and_crop_to_fit_width (boost::shared_ptr<const Film> film);
-       void scale_and_crop_to_fit_height (boost::shared_ptr<const Film> film);
-
        std::string processing_description (boost::shared_ptr<const Film> film) const;
 
        void set_length (Frame);
@@ -208,7 +205,9 @@ private:
        /** Sample aspect ratio obtained from the content file's header, if there is one */
        boost::optional<double> _sample_aspect_ratio;
        bool _yuv;
+       /** fade in time in content frames */
        Frame _fade_in;
+       /** fade out time in content frames */
        Frame _fade_out;
        VideoRange _range;
 };