Displaying 6 results from an estimated 6 matches for "swfdec_movie_load".
2007 Oct 17
0
28 commits - configure.ac debian/changelog debian/control debian/copyright debian/.gitignore debian/libswfdec0.dirs debian/libswfdec0.files debian/libswfdec0.shlibs debian/libswfdec-dev.dirs debian/libswfdec-dev.files debian/rules debian/swf-player.dirs
...l, SWFDEC_LOADER_REQUEST_DEFAULT, NULL);
} else {
swfdec_player_launch (SWFDEC_PLAYER (cx), SWFDEC_LOADER_REQUEST_DEFAULT,
url, target, NULL);
@@ -1210,12 +1205,7 @@ swfdec_action_get_url2 (SwfdecAsContext *cx, guint action, const guint8 *data, g
} else if (variables) {
swfdec_movie_load_variables (SWFDEC_MOVIE (movie), url, method, NULL);
} else {
- if (SWFDEC_MOVIE (movie)->swf == NULL) {
- swfdec_sprite_movie_load (movie, url, method, NULL);
- swfdec_movie_initialize (SWFDEC_MOVIE (movie));
- } else {
- swfdec_sprite_movie_load (movie, url, method, NULL);
-...
2007 Jun 27
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie_as.c
...t_url (SwfdecAsContext *cx, guint action, const guint8 *data, guint len)
{
- SwfdecMovie *movie;
+ SwfdecSpriteMovie *movie;
SwfdecBits bits;
char *url, *target;
@@ -899,7 +901,7 @@ swfdec_action_get_url (SwfdecAsContext *
}
movie = swfdec_action_get_target (cx);
if (movie)
- swfdec_movie_load (movie, url, target);
+ swfdec_movie_load (SWFDEC_MOVIE (movie), url, target);
else
SWFDEC_WARNING ("no movie to load");
g_free (url);
@@ -911,7 +913,7 @@ swfdec_action_get_url2 (SwfdecAsContext
{
const char *target, *url;
guint method;
- SwfdecMovie *movie;
+ Swfd...
2007 Oct 02
0
actionscript loadmovie
Hi!
I want use in my file swf actionscript coomand "loadmovie" but I didn't see it into swfdec-0.5.2. I saw that tehre is a fuction (swfdec_movie_load) that permit to load a movie (second file swf flash) into a current swf file So...How can I do to call this fuction? while actionscript command should to be call by my swf file? Thanks! Bye Wolf
PS sorry for my bad english ^^'
---------------------------------
------------------------...
2007 Jun 15
0
Branch 'as' - 4 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_sprite.c test/trace
...implement fscommnds. They're now handled by the SwfdecPlayer which emits an
"fscommand" signal.
diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c
index be3e877..c3faa96 100644
--- a/libswfdec/swfdec_movie.c
+++ b/libswfdec/swfdec_movie.c
@@ -1039,10 +1039,6 @@ swfdec_movie_load (SwfdecMovie *movie, c
}
/* FIXME: what do we do here? Is returning correct?*/
return;
- } else if (g_str_has_prefix (target, "FSCommand:")) {
- const char *command = url + strlen ("FSCommand:");
- SWFDEC_WARNING ("unhandled fscommand: %s %s", com...
2007 Jun 27
0
Branch 'as' - 16 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_script_function.c
...SwfdecMovie *movie;
SwfdecBits bits;
char *url, *target;
@@ -897,9 +872,8 @@ swfdec_action_get_url (SwfdecAsContext *
if (swfdec_bits_left (&bits)) {
SWFDEC_WARNING ("leftover bytes in GetURL action");
}
- movie = swfdec_action_get_target (cx);
- if (movie)
- swfdec_movie_load (movie, url, target);
+ if (SWFDEC_IS_MOVIE (cx->frame->target))
+ swfdec_movie_load (SWFDEC_MOVIE (cx->frame->target), url, target);
else
SWFDEC_WARNING ("no movie to load");
g_free (url);
@@ -911,7 +885,6 @@ swfdec_action_get_url2 (SwfdecAsContext
{
const...
2007 Aug 01
0
9 commits - doc/swfdec-sections.txt libswfdec/swfdec_as_frame.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h libswfdec/swfdec_loader_internal.h libswfdec/swfdec_loadertarget.c libswfdec/swfdec_loadertarget.h libswfdec/swfdec_movie.c
...der->state);
iface = SWFDEC_LOADER_TARGET_GET_INTERFACE (target);
g_return_if_fail (iface->parse != NULL);
diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c
index 3a2980d..a696967 100644
--- a/libswfdec/swfdec_movie.c
+++ b/libswfdec/swfdec_movie.c
@@ -1113,7 +1113,6 @@ swfdec_movie_load (SwfdecMovie *movie, c
request, data, data_len);
g_assert (loader);
swfdec_player_add_level_from_loader (player, depth, loader, NULL);
- swfdec_loader_queue_parse (loader);
}
} else {
SWFDEC_ERROR ("%s does not specify a valid level", target);
diff --git a/lib...