search for: exportassets

Displaying 10 results from an estimated 10 matches for "exportassets".

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
...| 52 ------------------- libswfdec/swfdec_types.h | 1 test/trace/DoInitAction-once.swf |binary test/trace/DoInitAction-once.swf.trace | 12 ++++ test/trace/DoInitAction-this.swf |binary test/trace/DoInitAction-this.swf.trace | 4 + test/trace/ExportAssets.swf |binary test/trace/ExportAssets.swf.trace | 9 +++ test/trace/Makefile.am | 2 test/trace/classes.swf |binary test/trace/classes.swf.trace | 3 + test/trace/event-order.swf |binary test/trace/event-order.swf.trac...
2007 Nov 14
0
5 commits - libswfdec/.gitignore libswfdec/swfdec_initialize.as test/image test/sound test/trace
...trace \ + DoInitAction-once.swf \ + DoInitAction-once.swf.trace \ + DoInitAction-this.swf \ + DoInitAction-this.swf.trace \ double.swf \ double.swf.trace \ double.swf.trace.org \ @@ -584,6 +588,8 @@ EXTRA_DIST = \ export-case-6.swf.trace \ export-case-7.swf \ export-case-7.swf.trace \ + ExportAssets.swf \ + ExportAssets.swf.trace \ extends-constructors.as \ extends-constructors-6.swf \ extends-constructors-6.swf.trace \ @@ -638,6 +644,13 @@ EXTRA_DIST = \ function-apply-crash-7.swf.trace \ function-apply-crash-8.swf \ function-apply-crash-8.swf.trace \ + function-properties.as \ +...
2007 Apr 27
0
Changes to 'refs/tags/0.4.4'
...wfDecoder 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 testcases whoops, forgot to update this file warn about not handling initObject add swfdec_js_construct_object change MovieClip JS object handling if no class is specified, get the class from the constructor u...
2007 Apr 27
0
Changes to 'refs/tags/0.4.3'
...wfDecoder 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 testcases whoops, forgot to update this file warn about not handling initObject add swfdec_js_construct_object change MovieClip JS object handling if no class is specified, get the class from the constructor u...
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_resource.c
...MOVIE (movie); SwfdecPlayer *player = SWFDEC_PLAYER (SWFDEC_AS_OBJECT (mov)->context); @@ -347,6 +347,70 @@ swfdec_sprite_movie_perform_one_action (SwfdecSpriteMovie *movie, guint tag, Swf SWFDEC_ERROR ("too many ShowFrame tags"); } return FALSE; + case SWFDEC_TAG_EXPORTASSETS: + { + SwfdecResource *resource = swfdec_movie_get_own_resource (mov); + guint i, count; + + g_assert (resource); /* must hold, ExportAssets can only be in root movies */ + if (!first_time) + return TRUE; + count = swfdec_bits_get_u16 (&bits); + SWFDEC_LOG ("exporting %u assets&quot...
2007 Apr 17
0
15 commits - libswfdec/jpeg libswfdec/swfdec_bits.c libswfdec/swfdec_edittext.c libswfdec/swfdec_font.c libswfdec/swfdec_image.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_script.c libswfdec/swfdec_shape.c libswfdec/swfdec_sprite.c
.../swfdec_sprite.c | 6 ++++-- 9 files changed, 79 insertions(+), 43 deletions(-) New commits: diff-tree de1a29a1b62e30df5cb4a26fe192efd44db98bec (from 4ecf6f08ab585cbf8089373cb6535d5e3e3493fc) Author: Benjamin Otte <otte@gnome.org> Date: Tue Apr 17 13:13:48 2007 +0200 break the ExportAssets loop if no more bytes are available diff --git a/libswfdec/swfdec_root_sprite.c b/libswfdec/swfdec_root_sprite.c index 7159927..41e8b31 100644 --- a/libswfdec/swfdec_root_sprite.c +++ b/libswfdec/swfdec_root_sprite.c @@ -117,7 +117,7 @@ tag_func_export_assets (SwfdecSwfDecoder count = swfdec_...
2007 Apr 17
0
Branch 'as' - 17 commits - libswfdec/jpeg libswfdec/swfdec_bits.c libswfdec/swfdec_font.c libswfdec/swfdec_image.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_script.c libswfdec/swfdec_shape.c libswfdec/swfdec_sound.c libswfdec/swfdec_sprite.c
...TUS_OK; } else { chunk = swfdec_bits_get_buffer (&s->b, -1); if (chunk == NULL) { diff-tree de1a29a1b62e30df5cb4a26fe192efd44db98bec (from 4ecf6f08ab585cbf8089373cb6535d5e3e3493fc) Author: Benjamin Otte <otte@gnome.org> Date: Tue Apr 17 13:13:48 2007 +0200 break the ExportAssets loop if no more bytes are available diff --git a/libswfdec/swfdec_root_sprite.c b/libswfdec/swfdec_root_sprite.c index 7159927..41e8b31 100644 --- a/libswfdec/swfdec_root_sprite.c +++ b/libswfdec/swfdec_root_sprite.c @@ -117,7 +117,7 @@ tag_func_export_assets (SwfdecSwfDecoder count = swfdec_...
2007 Dec 10
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_color_as.c libswfdec/swfdec_graphic_movie.c libswfdec/swfdec_image_decoder.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_movie_as_drawing.c
...L; } movie->needs_update = TRUE; - swfdec_movie_invalidate (SWFDEC_MOVIE (movie)); + swfdec_movie_invalidate_last (SWFDEC_MOVIE (movie)); } commit 6f3ebc54441b16e203ed0da9cbfd98a286634c93 Author: Benjamin Otte <otte at gnome.org> Date: Thu Dec 6 15:32:30 2007 +0100 handle ExportAssets tag in sprites diff --git a/test/dump.c b/test/dump.c index 77bd382..01a1776 100644 --- a/test/dump.c +++ b/test/dump.c @@ -150,6 +150,9 @@ dump_sprite (SwfdecSwfDecoder *dec, SwfdecSprite *s) /* FIXME add info about what sound etc */ g_print (" %4u start sound\n", j); brea...
2007 Dec 18
2
Changes to 'refs/tags/0.5.5'
...from autogen'd sources only emit EOF signal if we're not already EOF (attempt to) fix non-srcdir builds Don't segfault during frame cleanup when exceptions are present (fixes #13379) add test for just-fixed crash be paranoid about empty buffers handle ExportAssets tag in sprites rework invalidation handling again don't crash when loading images > 65kB (fixes #13529) make all decoder functions use uint32_t fix alignment warnings fix unaligned reads fix unaligned reads silence invalid alignment warnings si...
2007 Oct 18
0
18 commits - doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_flash_security.c
...ad, SWFDEC_TAG_DEFINE_SPRITE }, [SWFDEC_TAG_DEFINEMORPHSHAPE] = {"DefineMorphShape", tag_define_morph_shape, 0}, [SWFDEC_TAG_DEFINEFONT2] = {"DefineFont2", tag_func_define_font_2, 0}, @@ -699,16 +697,16 @@ static struct tag_func_struct tag_funcs[] = { [SWFDEC_TAG_EXPORTASSETS] = {"ExportAssets", tag_func_export_assets, 0}, [SWFDEC_TAG_IMPORTASSETS] = {"ImportAssets", NULL, 0}, [SWFDEC_TAG_ENABLEDEBUGGER] = {"EnableDebugger", NULL, 0}, - [SWFDEC_TAG_DOINITACTION] = {"DoInitAction", tag_func_do_init_action, SPRITE}, + [SWFDE...