search for: path_array

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

Did you mean: data_array
2007 Apr 16
0
4 commits - libswfdec/swfdec_shape.c libswfdec/swfdec_stroke.c test/dump.c
...("could not find a closed path for style %u, starting at %d %d", style, + paths[start].x_start, paths[start].y_start); goto fail; } } @@ -794,6 +795,14 @@ swfdec_shape_initialize_from_sub_paths ( { guint i; +#if 0 + g_print ("\n\n"); + for (i = 0; i < path_array->len; i++) { + SubPath *path = &g_array_index (path_array, SubPath, i); + g_print ("%d %d => %d %d - %u %u %u\n", path->x_start, path->y_start, path->x_end, path->y_end, + path->fill0style, path->fill1style, path->linestyle); + } +#endif swfdec_s...
2011 Sep 04
0
Bug#640381: scripting errors in xen-hotplug-cleanup
...lug-cleanup: line 24: [: !=: unary operator expected /etc/xen/scripts/xen-hotplug-cleanup: line 24: [: !=: unary operator expected ... ... line 24 of /etc/xen/scripts/xen-hotplug-cleanup if if [ $(xenstore-read "$vm_dev" 2>/dev/null) != "" ] \ && [ "${path_array[1]}" = "vbd" ]; then Maybe result is empty or outputs multiple results? Xen releated packages root at noisy:/var/log/xen# dpkg -l | grep -i xen ii libc6-xen 2.11.2-10 Embedded GNU C Library: Shared libraries [Xen version] ii libxe...
2007 Apr 16
0
7 commits - libswfdec/swfdec_codec_gst.c libswfdec/swfdec_font.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_pattern.c libswfdec/swfdec_pattern.h libswfdec/swfdec_shape.c libswfdec/swfdec_shape.h libswfdec/swfdec_sprite.c
...e_func) { int x = 0, y = 0; SubPath *path = NULL; @@ -842,10 +825,7 @@ swfdec_shape_get_recs (SwfdecSwfDecoder while ((type = swfdec_shape_peek_type (bits))) { switch (type) { case SWFDEC_SHAPE_TYPE_CHANGE: - if (shape->rgba) - path = swfdec_shape_parse_change (s, shape, path_array, path, &x, &y, parse_rgba, parse_stroke_rgba); - else - path = swfdec_shape_parse_change (s, shape, path_array, path, &x, &y, parse_rgb, parse_stroke_rgb); + path = swfdec_shape_parse_change (s, shape, path_array, path, &x, &y, pattern_func, stroke_func); break; c...
2007 Jul 18
0
12 commits - configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_playback_alsa.c libswfdec/jpeg libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.h libswfdec/swfdec_as_context.c
...e.c b/libswfdec/swfdec_shape.c index 06705f0..f954314 100644 --- a/libswfdec/swfdec_shape.c +++ b/libswfdec/swfdec_shape.c @@ -711,7 +711,7 @@ swfdec_shape_parse_line (SwfdecBits *bit } } -SubPath * +static SubPath * swfdec_shape_parse_change (SwfdecSwfDecoder *s, SwfdecShape *shape, GArray *path_array, SubPath *path, int *x, int *y, SwfdecPatternFunc parse_fill, SwfdecStrokeFunc parse_stroke) { diff --git a/libswfdec/swfdec_sound.c b/libswfdec/swfdec_sound.c index 8c171a6..9f03af0 100644 --- a/libswfdec/swfdec_sound.c +++ b/libswfdec/swfdec_sound.c @@ -177,7 +177,7 @@ tag_func_define_sound...