Add an assertion.
[dcpomatic.git] / src / lib / frame_rate_change.cc
index 265ed0dbe1093813fea6f75bc68b3eba05da6a33..8ad6de9425aa2675158ed5b7a3421658e4c0aedf 100644 (file)
@@ -37,11 +37,11 @@ about_equal (double a, double b)
 }
 
 FrameRateChange::FrameRateChange ()
-       : skip (false)
+       : source (24)
+       , dcp (24)
+       , skip (false)
        , repeat (1)
        , change_speed (false)
-       , source (24)
-       , dcp (24)
        , speed_up (1)
 {
 
@@ -79,13 +79,15 @@ FrameRateChange::construct (double source_, int dcp_)
 }
 
 FrameRateChange::FrameRateChange (shared_ptr<const Film> film, shared_ptr<const Content> content)
-       : repeat (1)
+       : skip (false)
+       , repeat (1)
 {
        construct (content->active_video_frame_rate(film), film->video_frame_rate());
 }
 
 FrameRateChange::FrameRateChange (shared_ptr<const Film> film, Content const * content)
-       : repeat (1)
+       : skip (false)
+       , repeat (1)
 {
        construct (content->active_video_frame_rate(film), film->video_frame_rate());
 }
@@ -108,7 +110,9 @@ FrameRateChange::description () const
 
                if (change_speed) {
                        double const pc = dcp * 100 / (source * factor());
-                       description += String::compose (_("DCP will run at %1%% of the content speed.\n"), pc);
+                       char buffer[256];
+                       snprintf (buffer, sizeof(buffer), _("DCP will run at %.1f%% of the content speed.\n"), pc);
+                       description += buffer;
                }
        }