search for: has_char

Displaying 3 results from an estimated 3 matches for "has_char".

Did you mean: char_char
2007 Jun 19
0
Branch 'as' - test/dump.c
...i++) { + if (!swfdec_sprite_get_action (s, i, &tag, &buffer)) + break; + switch (tag) { + case SWFDEC_TAG_DOACTION: + g_print (" %4u script\n", j); + break; + case SWFDEC_TAG_PLACEOBJECT2: + case SWFDEC_TAG_PLACEOBJECT3: + { + SwfdecBits bits; + gboolean has_char, is_move; + guint depth; + + swfdec_bits_init (&bits, buffer); + swfdec_bits_getbits (&bits, 6); + has_char = swfdec_bits_getbit (&bits); + is_move = swfdec_bits_getbit (&bits); + if (tag == SWFDEC_TAG_PLACEOBJECT3) + swfdec_bits_get_u8 (&bits); +...
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
...i++) { - if (!swfdec_sprite_get_action (s, i, &tag, &buffer)) - break; - switch (tag) { - case SWFDEC_TAG_DOACTION: - g_print (" %4u script\n", j); - break; - case SWFDEC_TAG_PLACEOBJECT2: - case SWFDEC_TAG_PLACEOBJECT3: - { - SwfdecBits bits; - gboolean has_char, is_move; - guint depth; - - swfdec_bits_init (&bits, buffer); - swfdec_bits_getbits (&bits, 6); - has_char = swfdec_bits_getbit (&bits); - is_move = swfdec_bits_getbit (&bits); - if (tag == SWFDEC_TAG_PLACEOBJECT3) - swfdec_bits_get_u8 (&bits); -...
2007 Jun 19
0
Branch 'as' - 4 commits - libswfdec/swfdec_codec_video.c libswfdec/swfdec_movie.c test/trace
...ched version of libmong 0.4, that adds + * SWFDisplayItem_setMove() and allows calling SWFMovie_add() with a NULL + * character. + */ +enum { + /* mark the PlaceObject as a move */ + MODIFY_MOVE = (1 << 0), + /* The next two control what character is set in the second PlaceObject: + * HAS_CHAR & DIFFERENT_CHAR: a Button + * DIFFERENT_CHAR: another MovieClip + * HAS_CHAR: the same MovieClip as in the first PlaceObject + * none: no character + */ + MODIFY_HAS_CHAR = (1 << 1), + MODIFY_DIFFERENT_CHAR = (1 << 2), + /* the transform is different */ + MODIFY_TRANSF...