]> git.sesse.net Git - kdenlive/blobdiff - src/changespeedcommand.h
New versions of FFmpeg are likely not to have libfaac since it requires
[kdenlive] / src / changespeedcommand.h
index 7852843ffedb68c3bd0da86624ee55d1cfb0a5f8..3f54c8fbe9cf85ce98e6edbe4697b5edad79a9bf 100644 (file)
@@ -33,7 +33,7 @@ class CustomTrackView;
 class ChangeSpeedCommand : public QUndoCommand
 {
 public:
-    ChangeSpeedCommand(CustomTrackView *view, ItemInfo info, double old_speed, double new_speed, const QString &clipId, bool doIt, QUndoCommand * parent = 0);
+    ChangeSpeedCommand(CustomTrackView *view, ItemInfo info, double old_speed, double new_speed, int old_strobe, int new_strobe, const QString &clipId, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
@@ -41,9 +41,10 @@ private:
     CustomTrackView *m_view;
     ItemInfo m_clipInfo;
     QString m_clipId;
-    bool m_doIt;
     double m_old_speed;
     double m_new_speed;
+    int m_old_strobe;
+    int m_new_strobe;
 };
 
 #endif