search for: swfdec_text_field_movie_iterate

Displaying 7 results from an estimated 7 matches for "swfdec_text_field_movie_iterate".

2008 Jan 27
2
[Bug 14264] New: flash ad that kills your machine
...com%26s%3D080110_Football_Planet_300x250%26a%3DSportingbetGreece%253Asportime_300x250%26tclk%3D%255Byour-click-command-here%255D&template=%2Fservices%2FUltraEditor%2FUltraAdImage.xml' This is the pattern of the messages i get on the console: SWFDEC: FIXME: swfdec_text_field_movie.c(1201): swfdec_text_field_movie_iterate: I'm pretty sure this is swfdec_player_add_action()'d [...] SWFDEC: FIXME: swfdec_text_field_movie.c(1201): swfdec_text_field_movie_iterate: I'm pretty sure this is swfdec_player_add_action()'d SWFDEC: WARN : swfdec_movie.c(1676): swfdec_movie_set_static_properties: trying to set ev...
2008 Jan 21
1
70 commits
Hey, In case someone filters commit mails or doesn't read 1MB blobs, I've just merged the result of me getting annoyed at various stuff. Unfortunately, this grew a bit out of hand and ended up being very huge. I expect this merge to have broken lots of things, so if you find stuff that used to work and now doesn't work (or even crashes), please poke me about it. What does this patch
2008 Feb 03
3
[Bug 14346] New: swfdec-mozilla 100% CPU usage with some animations
http://bugs.freedesktop.org/show_bug.cgi?id=14346 Summary: swfdec-mozilla 100% CPU usage with some animations Product: swfdec Version: 0.5.5 Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: plugin AssignedTo: swfdec at lists.freedesktop.org
2007 Oct 17
0
6 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c
...uot; #include "swfdec_text_format.h" -#include "swfdec_font.h" +#include "swfdec_xml.h" #include "swfdec_debug.h" #include "swfdec_player_internal.h" @@ -565,37 +565,11 @@ swfdec_text_field_movie_mark (SwfdecAsObject *object) } static void -swfdec_text_field_movie_iterate (SwfdecMovie *movie) -{ - SwfdecTextFieldMovie *text = SWFDEC_TEXT_FIELD_MOVIE (movie); - SwfdecAsObject *parent; - const char *s; - SwfdecAsValue val = { 0, }; - - if (text->text->variable == NULL) - return; - - parent = SWFDEC_AS_OBJECT (movie->parent); - swfdec_as_context_eval...
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
...dMovie *text) } swfdec_movie_queue_update (SWFDEC_MOVIE (text), - SWFDEC_MOVIE_INVALID_CONTENTS); + SWFDEC_MOVIE_INVALID_EXTENTS); return TRUE; } @@ -1204,6 +1214,7 @@ swfdec_text_field_movie_class_init (SwfdecTextFieldMovieClass * g_class) movie_class->iterate_start = swfdec_text_field_movie_iterate; movie_class->update_extents = swfdec_text_field_movie_update_extents; movie_class->render = swfdec_text_field_movie_render; + movie_class->invalidate = swfdec_text_field_movie_invalidate; } static void @@ -1536,7 +1547,7 @@ swfdec_text_field_movie_replace_text (SwfdecTextFieldM...
2007 Oct 22
0
12 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
...) { + text->scroll_bottom = MAX (CLAMP(text->scroll, 1, text->scroll_max) + + (visible > 0 ? visible - 1 : 0), text->scroll); + text->scroll_changed = TRUE; + } } } @@ -940,6 +960,23 @@ swfdec_text_field_movie_finish_movie (SwfdecMovie *movie) } static void +swfdec_text_field_movie_iterate (SwfdecMovie *movie) +{ + SwfdecTextFieldMovie *text = SWFDEC_TEXT_FIELD_MOVIE (movie); + + if (text->scroll_changed) { + SwfdecAsValue argv[2]; + + SWFDEC_AS_VALUE_SET_STRING (&argv[0], SWFDEC_AS_STR_onScroller); + SWFDEC_AS_VALUE_SET_OBJECT (&argv[1], SWFDEC_AS_OBJECT (movie...
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...on Jan 21 10:15:56 2008 +0100 use a sandbox when emitting onScroller diff --git a/libswfdec/swfdec_text_field_movie.c b/libswfdec/swfdec_text_field_movie.c index 214b345..8f8af44 100644 --- a/libswfdec/swfdec_text_field_movie.c +++ b/libswfdec/swfdec_text_field_movie.c @@ -1198,11 +1198,15 @@ swfdec_text_field_movie_iterate (SwfdecMovie *movie) if (text->scroll_changed) { SwfdecAsValue argv[2]; + SWFDEC_FIXME ("I'm pretty sure this is swfdec_player_add_action()'d"); SWFDEC_AS_VALUE_SET_STRING (&argv[0], SWFDEC_AS_STR_onScroller); SWFDEC_AS_VALUE_SET_OBJECT (&argv[1],...