search for: 76d978b

Displaying 2 results from an estimated 2 matches for "76d978b".

Did you mean: 71d678b
2007 Jun 27
0
Branch 'as' - 3 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_js_video.c libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_video_movie_as.c libswfdec/swfdec_video_movie.c
...g_return_if_fail (input != NULL); swfdec_video_movie_unset_input (movie); movie->input = input; + if (input == NULL) + return; if (input->connect) input->connect (input, movie); } diff --git a/libswfdec/swfdec_video_movie_as.c b/libswfdec/swfdec_video_movie_as.c index 76d978b..ad45317 100644 --- a/libswfdec/swfdec_video_movie_as.c +++ b/libswfdec/swfdec_video_movie_as.c @@ -63,14 +63,15 @@ swfdec_video_movie_init_context (SwfdecP SWFDEC_AS_STR_Video, 0, NULL, 0)); if (video == NULL) return; + player->Video = video; proto = swfdec_as_object_new (con...
2007 Jun 27
0
Branch 'as' - 16 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_script_function.c
...ONSTANT_STRING ("XML") + SWFDEC_AS_CONSTANT_STRING ("Video") + SWFDEC_AS_CONSTANT_STRING ("attachVideo") + SWFDEC_AS_CONSTANT_STRING ("clear") /* add more here */ ; diff --git a/libswfdec/swfdec_js_video.c b/libswfdec/swfdec_js_video.c index 946ebf7..76d978b 100644 --- a/libswfdec/swfdec_js_video.c +++ b/libswfdec/swfdec_js_video.c @@ -23,78 +23,56 @@ #include "swfdec_video.h" #include "swfdec_debug.h" -#include "swfdec_js.h" #include "swfdec_net_stream.h" #include "swfdec_player_internal.h" -st...