Credit Andrew with additional vaapi options and update Copyright
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / automation.inc
index 98ba2b00d2d821ed7e01d72a0537c9f3c98d3f66..434ebdab1c3d1a9126d60ffb5bf8940072f9e459 100644 (file)
@@ -2,6 +2,7 @@
 /*
  * CINELERRA
  * Copyright (C) 2008-2013 Adam Williams <broadcast at earthling dot net>
+ * Copyright (C) 2003-2016 Cinelerra CV contributors
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -43,6 +44,7 @@ enum
        AUTOMATION_PAN,
        AUTOMATION_MODE,
        AUTOMATION_MASK,
+// must be last or autos move when pasted due to speed pos shifts
        AUTOMATION_SPEED,
        AUTOMATION_TOTAL
 };
@@ -54,6 +56,7 @@ enum
        NON_AUTOMATION_TITLES,
        NON_AUTOMATION_TRANSITIONS,
        NON_AUTOMATION_PLUGIN_AUTOS,
+       NON_AUTOMATION_HARD_EDGES,
        NON_AUTOMATION_TOTAL
 };
 
@@ -86,4 +89,11 @@ enum
        AUTOMATION_TYPE_PAN
 };
 
+#define SPEED_MIN 0.005
+#define SPEED_MAX 200.0
+#define ZOOM_MIN 0.001
+#define ZOOM_MAX 1000.
+#define XY_MIN -32767
+#define XY_MAX 32767
+
 #endif