search for: b3fcea0

Displaying 2 results from an estimated 2 matches for "b3fcea0".

Did you mean: 33fea0
2007 Oct 21
0
player/swfplay.c
...anged, 3 deletions(-) New commits: commit cbdeb8883fc219062243d230418631a3398d0fe2 Author: Benjamin Otte <otte at gnome.org> Date: Sun Oct 21 16:47:35 2007 +0200 remove obsolete conditional include that was never enabled diff --git a/player/swfplay.c b/player/swfplay.c index d976358..b3fcea0 100644 --- a/player/swfplay.c +++ b/player/swfplay.c @@ -25,9 +25,6 @@ #include <libswfdec/swfdec.h> #include <libswfdec-gtk/swfdec-gtk.h> -#if HAVE_GNOMEVFS -#include <libgnomevfs/gnome-vfs.h> -#endif #include "swfdec_slow_loader.h"
2007 Oct 26
0
6 commits - configure.ac libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec_video.c player/swfplay.c
...d6d346ca221da7087ba Author: Benjamin Otte <otte at gnome.org> Date: Fri Oct 26 21:14:54 2007 +0200 set max-runtime to 0 in swfplay This is so the player doesn't abort when run in gdb after having set a breakpoint. diff --git a/player/swfplay.c b/player/swfplay.c index b3fcea0..5dd5f61 100644 --- a/player/swfplay.c +++ b/player/swfplay.c @@ -155,6 +155,8 @@ main (int argc, char *argv[]) } loop = g_main_loop_new (NULL, TRUE); player = swfdec_gtk_player_new (NULL); + /* this allows the player to continue fine when running in gdb */ + swfdec_player_set_maximum_ru...