Displaying 2 results from an estimated 2 matches for "02a63b3".
Did you mean:
027636b3
2007 Nov 20
0
4 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_resource.c test/image test/trace
...r: Benjamin Otte <otte at gnome.org>
Date: Tue Nov 20 11:56:56 2007 +0100
initialize movieclip before calling onLoadInit
This is required so that _width and _height properties work correctly
diff --git a/libswfdec/swfdec_resource.c b/libswfdec/swfdec_resource.c
index 8a17d9e..02a63b3 100644
--- a/libswfdec/swfdec_resource.c
+++ b/libswfdec/swfdec_resource.c
@@ -556,8 +556,6 @@ swfdec_resource_emit_on_load_init (SwfdecResource *resource)
if (resource->state != SWFDEC_RESOURCE_COMPLETE)
return FALSE;
- swfdec_resource_emit_signal (resource, SWFDEC_AS_STR_onLoadInit,...
2007 Nov 30
0
36 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_date.c libswfdec/swfdec_as_initialize.as libswfdec/swfdec_as_initialize.h libswfdec/swfdec_as_strings.c libswfdec/swfdec_flash_security.c
...lass;
+};
+
+GType swfdec_policy_loader_get_type (void);
+
+SwfdecPolicyLoader *swfdec_policy_loader_new (SwfdecFlashSecurity * sec,
+ const char * host,
+ SwfdecPolicyLoaderFunc func);
+
+G_END_DECLS
+#endif
diff --git a/libswfdec/swfdec_resource.c b/libswfdec/swfdec_resource.c
index 02a63b3..e67decb 100644
--- a/libswfdec/swfdec_resource.c
+++ b/libswfdec/swfdec_resource.c
@@ -432,6 +432,7 @@ swfdec_resource_new (SwfdecPlayer *player, SwfdecLoader *loader, const char *var
resource->version = 7;
resource->player = player;
resource->variables = g_strdup (variables);
+...