Add our own raw_convert that uses SafeStringStream.
[dcpomatic.git] / src / lib / frame_rate_change.h
index 92af0ec0174635586161726426ed0295a7e512e7..f5244fea2b5d68491039b5c52db71d4ca81dd35f 100644 (file)
@@ -37,6 +37,9 @@ struct FrameRateChange
                return repeat;
        }
 
+       float source;
+       int dcp;
+
        /** true to skip every other frame */
        bool skip;
        /** number of times to use each frame (e.g. 1 is normal, 2 means repeat each frame once, and so on) */
@@ -57,7 +60,7 @@ struct FrameRateChange
         */
        float speed_up;
 
-       std::string description;
+       std::string description () const;
 };
 
 #endif