![]() |
FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.
|
00001 /* 00002 A GTK video editor Designed for Artists to do, special effects, compositing and animation. 00003 Copyright (C) 2011 Fabio J. Gonzalez 00004 00005 This program is free software: you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation, either version 3 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 */ 00018 00052 #ifndef FJME_KEYFRAME_H 00053 #define FJME_KEYFRAME_H 1 00054 00055 #include "basic.h" 00056 00057 #define DelFrameData( a, b ) DelFrameValue((a), (b)) 00058 #define DelFrame( a, b ) DelFrameValue((a), (b)) 00059 00073 #define MVALUE(x) ((mvalue*)x) 00074 00079 #define KEYFRAME(x) ((keyframe*)x) 00080 00081 struct keyframe; 00082 typedef struct keyframe keyframe; 00083 00084 struct mvalue; 00085 typedef struct mvalue mvalue; 00086 00099 struct keyframe { 00105 gdouble v; 00106 00112 gpointer data; 00113 00120 guint32 len; 00121 00128 guint32 frame; 00129 00135 mvalue* q; 00136 }; 00137 00143 struct mvalue { 00150 gdouble v; 00151 00158 gpointer data; 00159 00165 guint32 len; 00166 00173 GList* frames; 00174 00185 Layer* layer; 00186 00187 }; 00188 00203 gint FrameComp(gconstpointer a, gconstpointer b); 00204 00217 gint FrameFind(gconstpointer a, gconstpointer b); 00218 00225 gint ValueFind(gconstpointer a, gconstpointer b); 00226 00233 gdouble* AddAnimatedValue(); 00234 00240 mvalue* FindAnmFromD(const gdouble* d); 00241 00247 void AddFrameData(mvalue* value, guint32 frame, gpointer data, guint32 len); 00248 00254 void AddFrameValue(mvalue* value, guint32 frame, gdouble v); 00255 00261 void DelFrameValue(mvalue* value, guint32 frame); 00262 00269 void InsertFrame(gdouble* d); 00270 00281 void InsertPluginFrame(iPlugin* p, gdouble* d); 00282 00290 void DelFramel(gdouble* d); 00291 00297 void DelPluginFrame(iPlugin* p, gdouble* d); 00298 00311 void AnimateValues(guint32 frame); 00312 00319 void PluginFrame(); 00320 00326 void RenderFrame(); 00327 00344 void Frame(); 00345 00346 #endif