search for: swfedittagdefinit

Displaying 5 results from an estimated 5 matches for "swfedittagdefinit".

Did you mean: swfedittagdefini
2007 Feb 13
0
9 commits - libswfdec/js libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_image.c libswfdec/swfdec_script.c test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c
...feditFile * file); G_END_DECLS diff --git a/test/swfedit_list.c b/test/swfedit_list.c index 35ab0a3..289d7de 100644 --- a/test/swfedit_list.c +++ b/test/swfedit_list.c @@ -99,7 +99,7 @@ swfedit_list_new (const SwfeditTagDefini } SwfeditList * -swfedit_list_new_read (SwfdecBits *bits, const SwfeditTagDefinition *def) +swfedit_list_new_read (SwfeditToken *parent, SwfdecBits *bits, const SwfeditTagDefinition *def) { SwfeditList *list; SwfeditTokenEntry *entry; @@ -109,6 +109,7 @@ swfedit_list_new_read (SwfdecBits *bits, g_return_val_if_fail (def != NULL, NULL); list = swfedit_list_new_inte...
2007 Jan 24
0
Branch 'interpreter' - 8 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_js.c libswfdec/swfdec_js.h libswfdec/swfdec_script.c test/swfdec_out.c test/swfdec_out.h test/swfedit_tag.c test/swfedit_token.c test/swfedit_token.h
...me; /* name to use for this field */ SwfeditTokenType type; /* type of this field */ - guint n_items; /* field to look at for item count */ + guint n_items; /* field to look at for item count (or 0 to use 1 item) */ guint hint; /* hint to pass to field when creating */ } SwfeditTagDefinition; static const SwfeditTagDefinition ShowFrame[] = { { NULL, 0, 0, 0 } }; +static const SwfeditTagDefinition SetBackgroundColor[] = { { "color", SWFEDIT_TOKEN_RGB, 0, 0 }, { NULL, 0, 0, 0 } }; static const SwfeditTagDefinition *tags[] = { [SWFDEC_TAG_SHOWFRAME] = ShowFrame, + [...
2008 Jan 07
0
12 commits - configure.ac doc/swfdec.types Makefile.am test/crashfinder.c test/dump.c test/Makefile.am test/swfdec-extract.c test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_file.c test/swfedit_file.h test/swfedit_list.c test/swfedit_list.h
..._token_set (token, i / list->n_defs * list->n_defs + j - 1, - GUINT_TO_POINTER (buffer->length)); - } - swfdec_buffer_unref (buffer); - } - } - /* maybe add items */ - if (i == token->tokens->len - 1) { - for (j = 0; j < list->n_defs; j++) { - const SwfeditTagDefinition *def = &list->def[(j + 1) % list->n_defs]; - swfedit_tag_add_token (SWFEDIT_TOKEN (list), def->name, def->type, def->hint); - } - } -} - -static void -swfedit_list_class_init (SwfeditListClass *klass) -{ - GObjectClass *object_class = G_OBJECT_CLASS (klass); - Swfed...
2007 Feb 14
0
7 commits - libswfdec/swfdec_image.c libswfdec/swfdec_script.c libswfdec/swfdec_script.h test/Makefile.am test/swfdec_out.c test/swfdec_out.h test/swfedit.c test/swfedit_list.c test/swfedit_tag.c test/swfedit_token.c test/swfedit_token.h test/swfscript.c
...+ j - 1, + GUINT_TO_POINTER (buffer->length)); + } + swfdec_buffer_unref (buffer); + } + } /* maybe add items */ if (i == token->tokens->len - 1) { - g_print ("add fett neue items, man!\n"); for (j = 0; j < list->n_defs; j++) { const SwfeditTagDefinition *def = &list->def[(j + 1) % list->n_defs]; swfedit_tag_add_token (SWFEDIT_TOKEN (list), def->name, def->type, def->hint); diff --git a/test/swfedit_tag.c b/test/swfedit_tag.c index 75137a5..b69a5d5 100644 --- a/test/swfedit_tag.c +++ b/test/swfedit_tag.c @@ -396,6 +396,...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...me; /* name to use for this field */ SwfeditTokenType type; /* type of this field */ - guint n_items; /* field to look at for item count */ + guint n_items; /* field to look at for item count (or 0 to use 1 item) */ guint hint; /* hint to pass to field when creating */ } SwfeditTagDefinition; static const SwfeditTagDefinition ShowFrame[] = { { NULL, 0, 0, 0 } }; +static const SwfeditTagDefinition SetBackgroundColor[] = { { "color", SWFEDIT_TOKEN_RGB, 0, 0 }, { NULL, 0, 0, 0 } }; static const SwfeditTagDefinition *tags[] = { [SWFDEC_TAG_SHOWFRAME] = ShowFrame, + [...