search for: 53ca79e

Displaying 2 results from an estimated 2 matches for "53ca79e".

Did you mean: 538a790
2007 Jun 13
1
Branch 'as' - libswfdec/swfdec_movie.c
...71ab143aac62300907486d3 (from a6c380467a9cb20fd2d151d74603f1de5637cabf) Author: Benjamin Otte <otte at gnome.org> Date: Wed Jun 13 16:34:43 2007 +0200 fix matrix calculation - 3 lines got lost in the reorg diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c index cee0ba6..53ca79e 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -951,6 +951,9 @@ swfdec_movie_set_static_properties (Swfd } if (transform) { movie->original_transform = *transform; + movie->xscale = swfdec_matrix_get_xscale (&movie->original_transform); + movie...
2007 Jun 14
0
Branch 'as' - 4 commits - libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite_movie.c player/swfdec_debug_movies.c
...se the tags. This makes startup extremely fast (no need to parse anything) and fits exactly into the curent model. And we save quite some meory as we don't need to allocate loads of SwfdecContent structures. diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c index 53ca79e..3bfd642 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -991,8 +991,9 @@ swfdec_movie_new_for_content (SwfdecMovi movie = swfdec_movie_new (player, content->depth, parent, content->graphic, content->name ? swfdec_as_context_get_string (SWFDEC_AS_CONTEXT...