Displaying 4 results from an estimated 4 matches for "swfdecspriteinfo".
2007 Mar 07
0
13 commits - libswfdec/Makefile.am libswfdec/swfdec_js_global.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.c libswfdec/swfdec_root_movie.h libswfdec/swfdec_script.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c
...continue;
for (j = 0; j < frame->actions->len; j++) {
diff-tree c9453f8b81e8e7ccde2e98f1ec922f6634f3bfda (from b168c2c784a6b4e3f5ddb800f8b9d47c32f71fbc)
Author: Benjamin Otte <otte@gnome.org>
Date: Wed Mar 7 17:45:33 2007 +0100
remove any mention of character data and SwfdecSpriteInfo
I didn't like that concept anyway and it was only used for init actions.
And init actions are going to use root actions now.
diff --git a/libswfdec/swfdec_root_movie.c b/libswfdec/swfdec_root_movie.c
index d01b8e4..aeaa529 100644
--- a/libswfdec/swfdec_root_movie.c
+++ b/libswfdec...
2007 Mar 05
0
11 commits - configure.ac libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.c libswfdec/swfdec_root_movie.h libswfdec/swfdec_script.c libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_swf_decoder.c
...prite_movie.c b/libswfdec/swfdec_sprite_movie.c
index d5545df..22e0458 100644
--- a/libswfdec/swfdec_sprite_movie.c
+++ b/libswfdec/swfdec_sprite_movie.c
@@ -32,6 +32,38 @@
#include "swfdec_script.h"
#include "swfdec_sprite.h"
+/*** SWFDEC_SPRITE_INFO ***/
+
+typedef struct _SwfdecSpriteInfo SwfdecSpriteInfo;
+struct _SwfdecSpriteInfo {
+ gboolean init_action_has_run; /* TRUE if init actions have been run */
+};
+
+static void
+swfdec_sprite_info_free (gpointer infop)
+{
+ SwfdecSpriteInfo *info = infop;
+
+ g_free (info);
+}
+
+static SwfdecSpriteInfo *
+swfdec_sprite_info_get (S...
2007 Apr 27
0
Changes to 'refs/tags/0.4.3'
...to really add files
add debugging output
make SwfdecSpriteAction type be a uint so we can use different enums
add SwfdecRootSprite - a sprite that manages "root actions"
exports are no longer handled in the SwfDecoder
remove any mention of character data and SwfdecSpriteInfo
use the right variable here
omit object name for missing functions instead of always printing "global"
support _global variable
implement the DoInitAction part of root actions
implement ExportAssets functionality
implement attachMovie
add 2 testca...
2007 Apr 27
0
Changes to 'refs/tags/0.4.4'
...to really add files
add debugging output
make SwfdecSpriteAction type be a uint so we can use different enums
add SwfdecRootSprite - a sprite that manages "root actions"
exports are no longer handled in the SwfDecoder
remove any mention of character data and SwfdecSpriteInfo
use the right variable here
omit object name for missing functions instead of always printing "global"
support _global variable
implement the DoInitAction part of root actions
implement ExportAssets functionality
implement attachMovie
add 2 testca...