diff --git a/include/Clip.h b/include/Clip.h index 29194bb3..bd44cda1 100644 --- a/include/Clip.h +++ b/include/Clip.h @@ -91,6 +91,7 @@ namespace openshot { class Clip : public ClipBase { private: bool waveform; ///< Should a waveform be used instead of the clip's image + string previous_properties; ///< This string contains the previous JSON properties // Audio resampler (if time mapping) AudioResampler *resampler; diff --git a/include/Color.h b/include/Color.h index faeb21a6..00d420f0 100644 --- a/include/Color.h +++ b/include/Color.h @@ -29,13 +29,14 @@ #define OPENSHOT_COLOR_H #include "KeyFrame.h" +#include namespace openshot { /** * @brief This struct represents a color (used on the timeline and clips) * - * Colors are represented by 4 curves, representing red, green, and blue. The curves + * Colors are represented by 3 curves, representing red, green, and blue. The curves * can be used to animate colors over time. */ struct Color{ @@ -43,6 +44,9 @@ namespace openshot { Keyframe green; ///