search for: swfdecsystem

Displaying 4 results from an estimated 4 matches for "swfdecsystem".

Did you mean: swfdec_system
2007 Aug 27
0
7 commits - libswfdec/Makefile.am libswfdec/swfdec_as_string.c libswfdec/swfdec_as_string.h libswfdec/swfdec_as_strings.c libswfdec/swfdec.h libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_player.c
...#include <libswfdec/swfdec_as_context.h> #include <libswfdec/swfdec_rect.h> #include <libswfdec/swfdec_ringbuffer.h> +#include <libswfdec/swfdec_system.h> G_BEGIN_DECLS @@ -51,6 +52,7 @@ struct _SwfdecPlayer SwfdecAsContext context; /* global properties */ + SwfdecSystem * system; /* our system properties */ gboolean initialized; /* if width and height are set already */ guint rate; /* divide by 256 to get iterations per second */ guint width; /* width of movie */ diff-tree 5393dfcf8b8d98191556c89ff57ec7b674f15a73 (from be675b5620eea36d607af7...
2007 Oct 12
0
Changes to 'refs/tags/0.5.3'
...ing g_print()s rename since we have to do one iteration more This test is completely useless now make this work again add same hack here don't complain when closing the window remove the annoying FIXME for Flash 5 add test for ASSetPropFlags add a SwfdecSystem object to hold system information fix initial copy-paste issues add a "system" property to SwfdecPlayer that holds the player fix copyrights add infrastructure for System.capabilities.Query add swfdec_as_string_escape() function implement System.capabil...
2007 Aug 29
0
15 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_system_as.c
...R: + s = g_value_dup_string (value); + if (s) { + g_free (system->server_manufacturer); + system->server_manufacturer = s; + } + break; case PROP_OS: s = g_value_dup_string (value); if (s) { @@ -211,6 +222,7 @@ swfdec_system_finalize (GObject *object) SwfdecSystem *system = SWFDEC_SYSTEM (object); g_free (system->manufacturer); + g_free (system->server_manufacturer); g_free (system->os); g_free (system->os_type); g_free (system->player_type); @@ -236,6 +248,9 @@ swfdec_system_class_init (SwfdecSystemCl g_object_class_install_...
2007 Dec 13
0
libswfdec-gtk/swfdec_gtk_player.c libswfdec/swfdec_as_date.c libswfdec/swfdec_audio.c libswfdec/swfdec_audio_event.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_interval.c libswfdec/swfdec_key_as.c libswfdec/swfdec_mouse_as.c libswfdec/swfdec_movie.c
...c_event.h> #include <libswfdec/swfdec_rect.h> @@ -50,9 +49,9 @@ struct _SwfdecTimeout { #define SWFDEC_PLAYER_N_ACTION_QUEUES 4 -struct _SwfdecPlayer +struct _SwfdecPlayerPrivate { - SwfdecAsContext context; + SwfdecPlayer * player; /* backlink */ /* global properties */ SwfdecSystem * system; /* our system properties */ @@ -130,23 +129,6 @@ struct _SwfdecPlayer SwfdecRingBuffer * actions[SWFDEC_PLAYER_N_ACTION_QUEUES]; /* all actions we've queued up so far */ }; -struct _SwfdecPlayerClass -{ - SwfdecAsContextClass context_class; - - void (* advance) (SwfdecPla...