search for: movies

Displaying 20 results from an estimated 1791 matches for "movies".

Did you mean: moves
2007 Mar 22
0
7 commits - configure.ac doc/swfdec-docs.sgml libswfdec/js libswfdec/swfdec_buffer.c libswfdec/swfdec_buffer.h libswfdec/swfdec_js_movie.c test/trace
...*cx, JSObject SwfdecMovie *movie; guint loaded; - movie = JS_GetPrivate (cx, obj); - g_assert (movie); + movie = swfdec_scriptable_from_object (cx, obj, SWFDEC_TYPE_MOVIE); + if (movie == NULL) { + SWFDEC_WARNING ("not a movie"); + return JS_TRUE; + } /* only root movies can be partially loaded */ if (SWFDEC_IS_ROOT_MOVIE (movie)) { @@ -836,8 +920,11 @@ mc_name_get (JSContext *cx, JSObject *ob SwfdecMovie *movie; JSString *string; - movie = JS_GetPrivate (cx, obj); - g_assert (movie); + movie = swfdec_scriptable_from_object (cx, obj, SWFDEC_TYPE_MOVIE...
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
...fdec_player_do_action (player)); - for (walk = player->roots; walk; walk = walk->next) { - swfdec_movie_update (walk->data); - } } /* used for breakpoints */ @@ -1389,6 +1384,31 @@ swfdec_player_lock (SwfdecPlayer *player) return TRUE; } +/* runs queued invalidations for all movies and resets the movies */ +static void +swfdec_player_update_movies (SwfdecPlayer *player) +{ + SwfdecMovie *movie; + GList *walk; + + /* FIXME: This g_list_last could be slow */ + for (walk = g_list_last (player->movies); walk; walk = walk->prev) { + movie = walk->data; + + swfde...
2007 Jun 27
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie_as.c
..."property %s not implemented", name); } diff-tree 3f21f4a288e09a03206ff52f1e3fd5496233a7f1 (from b5472cbe1dd631b9c0d0c2e36dc93f83b1db4108) Author: Benjamin Otte <otte at gnome.org> Date: Sun Jun 24 18:27:12 2007 +0200 make swfdec_movie_initialize() work with non-sprite movies diff --git a/libswfdec/swfdec_sprite_movie.c b/libswfdec/swfdec_sprite_movie.c index d42aac3..457644e 100644 --- a/libswfdec/swfdec_sprite_movie.c +++ b/libswfdec/swfdec_sprite_movie.c @@ -555,24 +555,27 @@ static void swfdec_sprite_movie_init_movie (SwfdecMovie *mov) { SwfdecSpriteMovie *mov...
2007 Jun 20
0
Branch 'as' - 5 commits - libswfdec/swfdec_graphic_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_sprite_movie.c test/image
...+ + for (i = 5; i < 8; i++) + do_movie (i); + + return 0; +} diff-tree 76539ac3adffb3888da86d513deac7aee3cf8611 (from 04c26849608a5a5728ef1873661349e6903c6956) Author: Benjamin Otte <otte at gnome.org> Date: Wed Jun 20 11:55:13 2007 +0200 merge graphics when merging compatible movies. I don't like the fix at all, it's not clean. But it seems to work for now. diff --git a/libswfdec/swfdec_sprite_movie.c b/libswfdec/swfdec_sprite_movie.c index cbbc8b7..5e96105 100644 --- a/libswfdec/swfdec_sprite_movie.c +++ b/libswfdec/swfdec_sprite_movie.c @@ -28,6 +28,7 @@ #...
2007 Mar 15
0
11 commits - libswfdec/swfdec_debugger.c libswfdec/swfdec_debugger.h libswfdec/swfdec_event.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c
...libswfdec/swfdec_player_internal.h | 2 libswfdec/swfdec_script.c | 4 libswfdec/swfdec_sprite_movie.c | 112 +++++------ libswfdec/swfdec_sprite_movie.h | 2 player/Makefile.am | 2 player/swfdebug.c | 46 ++++ player/swfdec_debug_movies.c | 371 +++++++++++++++++++++++++++++++++++++ player/swfdec_debug_movies.h | 64 ++++++ player/swfdec_player_manager.c | 22 -- 17 files changed, 741 insertions(+), 117 deletions(-) New commits: diff-tree c177682556b8107e82589593a0eee794e7f342b4 (from 78a3f9774427296b43824923...
2007 Aug 07
0
5 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_keys.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie_as.c player/swfdebug.c player/swfdec_debug_movies.c player/swfdec_debug_movies.h test/trace
libswfdec/swfdec_as_context.c | 14 +- libswfdec/swfdec_keys.h | 2 libswfdec/swfdec_movie.c | 70 ++++++++++- libswfdec/swfdec_movie.h | 2 libswfdec/swfdec_sprite_movie_as.c | 12 -- player/swfdebug.c | 6 - player/swfdec_debug_movies.c | 221 +++++++++++++++++++------------------ player/swfdec_debug_movies.h | 5 test/trace/swfdec_interaction.c | 22 ++- test/trace/swfdec_interaction.h | 5 10 files changed, 222 insertions(+), 137 deletions(-) New commits: diff-tree efc9ce9124f28dfad6858a83fc2fdc74...
2007 Jun 13
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_sprite.c
...-359,7 +313,6 @@ swfdec_movie_destroy (SwfdecMovie *movie } player->roots = g_list_remove (player->roots, movie); } - swfdec_movie_set_content (movie, NULL); /* FIXME: figure out how to handle destruction pre-init/construct. * This is just a stop-gap measure to avoid dead movies in those queues */ g_queue_remove (player->init_queue, movie); @@ -418,8 +371,8 @@ swfdec_movie_execute_script (SwfdecMovie g_return_if_fail (SWFDEC_IS_MOVIE (movie)); g_return_if_fail (condition != 0); - if (movie->content->events) { - swfdec_event_list_execute (movie->c...
2008 Jan 02
0
3 commits - libswfdec/swfdec_movie.c test/trace
...", ""); commit d880e730c35bdc0623986a3c6729b938fb280921 Author: Benjamin Otte <otte at gnome.org> Date: Wed Jan 2 15:11:12 2008 +0100 fix invalidation rectangle computation for masks Previously they were not computed at all (oops) and that could cause masked movies to disappear... diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c index 400ca2e..547155b 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -950,12 +950,20 @@ swfdec_movie_render (SwfdecMovie *movie, cairo_t *cr, cairo_pattern_t *mask; if (movie->pa...
2007 Aug 22
0
8 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_sprite_movie_as.c vivified/core
...r of the API sees and interacts with. It's what coordinates in _handle_mouse() are given in and what the invalidate signal uses for its rectangle. The Flash movie itself has no possibility to get to this coordinate system. The global coordinate system is the system all root movies live in. It's what you get after applying the Stage transformations. The two functions swfdec_player_stage_to_global() and swfdec_player_global_to_stage() transform between this and the previous coordinate system. Various Flash functions (like for example hitTest when using coor...
2007 Jun 20
1
Branch 'as' - libswfdec/swfdec_graphic_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie.c
..._sprite_movie.c | 13 ++++++++----- 4 files changed, 48 insertions(+), 5 deletions(-) New commits: diff-tree 255d2e184bae07fbcd9db8a906450a21e0f687c7 (from 9ed04d23be28c9dd349a2f5024546c465d09da96) Author: Benjamin Otte <otte at gnome.org> Date: Wed Jun 20 11:28:05 2007 +0200 allow movies to replace their contents with a new Graphic diff --git a/libswfdec/swfdec_graphic_movie.c b/libswfdec/swfdec_graphic_movie.c index b043b21..b3cfd73 100644 --- a/libswfdec/swfdec_graphic_movie.c +++ b/libswfdec/swfdec_graphic_movie.c @@ -22,6 +22,15 @@ #endif #include "swfdec_graphic_movi...
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...quot;0" depth="1" objectID="4" /> + <ShowFrame/> + <End/> + </tags> + </Header> +</swf> commit d49dd06bc9fad2d3522eba7fb1b5aad552a35bfc Author: Benjamin Otte <otte at gnome.org> Date: Wed Nov 28 13:35:25 2007 +0100 movies on top of other movies need to receive events diff --git a/libswfdec/swfdec_button_movie.c b/libswfdec/swfdec_button_movie.c index 0a8a50c..4395c2e 100644 --- a/libswfdec/swfdec_button_movie.c +++ b/libswfdec/swfdec_button_movie.c @@ -273,7 +273,7 @@ swfdec_button_movie_contains (SwfdecMovie *movi...
2007 Aug 17
0
Branch 'vivi' - 3 commits - player/Makefile.am player/swfdec_debug_movies.c player/swfdec_debug_movies.h vivified/core vivified/ui
player/Makefile.am | 27 ++----- player/swfdec_debug_movies.h | 67 ------------------ vivified/core/vivi_initialize.as | 3 vivified/ui/Makefile.am | 2 vivified/ui/vivi_movie_list.c | 140 +++++++++++++++++++-------------------- vivified/ui/vivi_movie_list.h | 66 ++++++++++++++++++ 6 files changed, 148 insertions(+), 157 d...
2007 Oct 18
0
18 commits - doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_flash_security.c
...fdec/swfdec_net_stream.c index 135bae8..c401125 100644 --- a/libswfdec/swfdec_net_stream.c +++ b/libswfdec/swfdec_net_stream.c @@ -115,7 +115,7 @@ swfdec_net_stream_video_goto (SwfdecNetStream *stream, guint timestamp) if (stream->surface) { GList *walk; for (walk = stream->movies; walk; walk = walk->next) { - swfdec_video_movie_new_image (walk->data, stream->surface); + swfdec_video_movie_new_image (walk->data); } } } @@ -350,6 +350,14 @@ swfdec_net_stream_input_disconnect (SwfdecVideoMovieInput *input, SwfdecVideoMov g_object_unref (stream);...
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_resource.c
...NLOAD); - else - return TRUE; + return !swfdec_movie_queue_script (movie, SWFDEC_EVENT_UNLOAD); } /** @@ -327,8 +324,6 @@ swfdec_movie_destroy (SwfdecMovie *movie) } /* FIXME: figure out how to handle destruction pre-init/construct. * This is just a stop-gap measure to avoid dead movies in those queues */ - g_queue_remove (player->init_queue, movie); - g_queue_remove (player->construct_queue, movie); swfdec_player_remove_all_actions (player, movie); if (klass->finish_movie) klass->finish_movie (movie); @@ -339,52 +334,46 @@ swfdec_movie_destroy (SwfdecMovi...
2007 Nov 28
0
7 commits - configure.ac libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie.c test/trace
configure.ac | 7 ++- libswfdec/swfdec_movie.c | 57 ++++++++++----------------- libswfdec/swfdec_movie.h | 3 - libswfdec/swfdec_sprite_movie.c | 4 - test/trace/Makefile.am | 18 ++++++++ test/trace/remove-child-onUnload-5.swf |binary
2007 Mar 02
0
12 commits - libswfdec/Makefile.am libswfdec/swfdec_audio_flv.c libswfdec/swfdec_flv_decoder.c libswfdec/swfdec_js.c libswfdec/swfdec_js.h libswfdec/swfdec_js_video.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h
...-67,15 +67,15 @@ swfdec_net_stream_video_goto (SwfdecNetS CAIRO_FORMAT_ARGB32, w, h, w * 4); cairo_surface_set_user_data (stream->surface, &key, decoded, (cairo_destroy_func_t) swfdec_buffer_unref); + if (old != stream->surface) { + GList *walk; + for (walk = stream->movies; walk; walk = walk->next) { + swfdec_video_movie_new_image (walk->data, stream->surface, w, h); + } + } } } } - if (old != stream->surface) { - GList *walk; - for (walk = stream->movies; walk; walk = walk->next) { - swfdec_video_movie_new_image (wa...
2007 Aug 15
0
4 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c test/trace
...6e8053 Binary files /dev/null and b/test/trace/prototype-movie-5.swf differ diff --git a/test/trace/prototype-movie-5.swf.trace b/test/trace/prototype-movie-5.swf.trace new file mode 100644 index 0000000..84187bf --- /dev/null +++ b/test/trace/prototype-movie-5.swf.trace @@ -0,0 +1,4 @@ +Check that movies cannot be prototypes +undefined +undefined +undefined diff --git a/test/trace/prototype-movie-6.swf b/test/trace/prototype-movie-6.swf new file mode 100644 index 0000000..41a4005 Binary files /dev/null and b/test/trace/prototype-movie-6.swf differ diff --git a/test/trace/prototype-movie-6.swf.trace...
2007 Apr 25
2
Flash Skin and Rails View Issue
Hi, I have an issue embedding a flash movie into one of my rails views. /movies/index.rhtml embeds /resources/movies/episode1.swf and episode1.flv e.g index.rhtml includes: <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=" http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="320&qu...
2014 Mar 31
0
DIPON^ Captain America: The Winter Soldier (2014) Full Movie Free Download
Captain America: The Winter Soldier (2014) Full Movie Free Download: http://captainamerica.metroblog.com/ https://www.facebook.com/captainamericathewintersoldiermovie http://tweetvite.com/event/captainamericathewinter HELLO Movie LOVERS!!! Welcome to download and watch here Captain America: The Winter Soldier (2014) Full Movie Free online HD Quality. Hope you will really enjoy this New movie
2007 Jun 14
0
Branch 'as' - 7 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c player/Makefile.am
...gt;modified = TRUE; swfdec_player_update_drag_movie (player); } } diff-tree 361883eb263c60510a743ad9e419d263bc898ac8 (from c80a83a1441bb9b02208a385813bd5ca2daee0e7) Author: Benjamin Otte <otte at gnome.org> Date: Thu Jun 14 13:42:07 2007 +0200 only copy x0 and y0 on unmodified movies diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c index 0a0056c..be3e877 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -138,7 +138,15 @@ swfdec_movie_update_matrix (SwfdecMovie { double d, e; - movie->matrix = movie->original_transform; + /*...