search for: swfdecsubpath

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

2007 Dec 10
0
5 commits - libswfdec/jpeg libswfdec/swfdec_as_interpret.c libswfdec/swfdec_bits.c libswfdec/swfdec_cached.c libswfdec/swfdec_codec_adpcm.c libswfdec/swfdec_codec_audio.c libswfdec/swfdec_flash_security.c libswfdec/swfdec_image.c
...c index 90e09ef..4eba39a 100644 --- a/libswfdec/swfdec_shape_parser.c +++ b/libswfdec/swfdec_shape_parser.c @@ -272,8 +272,8 @@ swfdec_shape_parser_finish (SwfdecShapeParser *parser) if (style->draw == NULL) continue; if (style->subpaths) { - swfdec_style_finish (style, (SwfdecSubPath *) parser->subpaths->data, - parser->subpaths2->len ? (SwfdecSubPath *) parser->subpaths->data : NULL, FALSE); + swfdec_style_finish (style, (SwfdecSubPath *) (void *) parser->subpaths->data, + parser->subpaths2->len ? (SwfdecSubPath *) (void *) parser->s...
2007 Oct 11
0
12 commits - configure.ac doc/Makefile.am libswfdec/swfdec_as_frame.c libswfdec/swfdec_audio.c libswfdec/swfdec_audio_event.c libswfdec/swfdec_audio_event.h libswfdec/swfdec_shape_parser.c libswfdec/swfdec_sound.c test/sound
.../swfdec_shape_parser.c b/libswfdec/swfdec_shape_parser.c index 3b9d75d..75f3f99 100644 --- a/libswfdec/swfdec_shape_parser.c +++ b/libswfdec/swfdec_shape_parser.c @@ -220,8 +220,8 @@ swfdec_style_finish (SwfdecStyle *style, /* accumulate paths one by one */ while (style->subpaths) { - SwfdecSubPath *start, *last, *cur; - SwfdecSubPath *start2, *last2, *cur2; + SwfdecSubPath *start, *last; + SwfdecSubPath *start2 = NULL, *last2 = NULL; last = start = &paths[GPOINTER_TO_UINT (style->subpaths->data)]; swfdec_path_move_to (&style->draw->path, start->x_s...
2008 Jan 02
0
4 commits - libswfdec/Makefile.am libswfdec/swfdec_movie.c libswfdec/swfdec_shape_parser.c test/dump.c test/trace
...s diff --git a/libswfdec/swfdec_shape_parser.c b/libswfdec/swfdec_shape_parser.c index fc42fdf..d521a9c 100644 --- a/libswfdec/swfdec_shape_parser.c +++ b/libswfdec/swfdec_shape_parser.c @@ -274,10 +274,8 @@ swfdec_shape_parser_finish (SwfdecShapeParser *parser) swfdec_style_finish (style, (SwfdecSubPath *) (void *) parser->subpaths->data, parser->subpaths2->len ? (SwfdecSubPath *) (void *) parser->subpaths2->data : NULL, FALSE); parser->draws = g_slist_prepend (parser->draws, g_object_ref (style->draw)); - } else if (parser->parse_fill) { - SWFDEC_...