Displaying 3 results from an estimated 3 matches for "root_actions_perform".
Did you mean:
root_actions_performed
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
...-213,12 +215,34 @@ swfdec_root_movie_load (SwfdecRootMovie
void
swfdec_root_movie_perform_root_actions (SwfdecRootMovie *root, guint frame)
{
+ SwfdecRootSprite *sprite;
+ GArray *array;
+ guint i;
+
g_return_if_fail (SWFDEC_IS_ROOT_MOVIE (root));
g_return_if_fail (frame <= root->root_actions_performed);
if (frame < root->root_actions_performed)
return;
- g_print ("performing root actions for frame %u\n", root->root_actions_performed);
+ sprite = SWFDEC_ROOT_SPRITE (SWFDEC_SPRITE_MOVIE (root)->sprite);
+ SWFDEC_LOG ("performing root actions for frame %u...
2007 Mar 07
0
2 commits - libswfdec/swfdec_js_movie.c libswfdec/swfdec_root_movie.h
...--git a/libswfdec/swfdec_root_movie.h b/libswfdec/swfdec_root_movie.h
index f1ae02b..f5a57d6 100644
--- a/libswfdec/swfdec_root_movie.h
+++ b/libswfdec/swfdec_root_movie.h
@@ -45,6 +45,7 @@ struct _SwfdecRootMovie
guint unnamed_count; /* variable used for naming unnamed movies */
guint root_actions_performed; /* root actions been performed in all frames < this*/
+ GHashTable * exports; /* string->SwfdecCharacter mapping of exported characters */
};
struct _SwfdecRootMovieClass
@@ -61,5 +62,8 @@ void swfdec_root_movie_load (SwfdecRo
void swfdec_root_movie_perform_root_actions (SwfdecR...
2007 Jun 06
0
Branch 'as' - libswfdec/Makefile.am libswfdec/swfdec_root_movie.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_root_sprite.h libswfdec/swfdec_swf_decoder.c libswfdec/swfdec_swf_decoder.h libswfdec/swfdec_tag.c
...fdec_root_movie_load (SwfdecRootMovie
void
swfdec_root_movie_perform_root_actions (SwfdecRootMovie *root, guint frame)
{
- SwfdecRootSprite *sprite;
+ SwfdecSwfDecoder *s;
GArray *array;
guint i;
@@ -226,12 +226,12 @@ swfdec_root_movie_perform_root_actions (
if (frame < root->root_actions_performed)
return;
- sprite = SWFDEC_ROOT_SPRITE (SWFDEC_SPRITE_MOVIE (root)->sprite);
+ s = SWFDEC_SWF_DECODER (root->decoder);
SWFDEC_LOG ("performing root actions for frame %u", root->root_actions_performed);
root->root_actions_performed++;
- if (!sprite->root_ac...