Displaying 3 results from an estimated 3 matches for "no_scripts".
Did you mean:
do_scripts
2007 Aug 22
0
5 commits - libswfdec/swfdec_as_object.c NEWS player/swfplay.c
...cPlayer *player, const char *message, gpointer unused)
{
g_print ("%s\n", message);
@@ -93,7 +102,7 @@ main (int argc, char *argv[])
SwfdecPlayer *player;
GError *error = NULL;
gboolean use_image = FALSE, no_sound = FALSE;
- gboolean trace = FALSE;
+ gboolean trace = FALSE, no_scripts = FALSE;
char *variables = NULL;
char *s;
GtkWidget *window;
@@ -101,6 +110,7 @@ main (int argc, char *argv[])
GOptionEntry options[] = {
{ "delay", 'd', 0, G_OPTION_ARG_INT, &delay, "make loading of resources take time", "SECS" },
{ &...
2007 Nov 15
0
2 commits - libswfdec-gtk/swfdec_gtk_loader.c player/swfplay.c
...p;use_image, "use an intermediate image surface for drawing", NULL },
+ { "max-runtime", 0, 0, G_OPTION_ARG_INT, &max_runtime, "maximum time scripts run before aborting the player", "SECS" },
{ "no-scripts", 0, 0, G_OPTION_ARG_NONE, &no_scripts, "don't execute scripts affecting the application", NULL },
{ "no-sound", 'n', 0, G_OPTION_ARG_NONE, &no_sound, "don't play sound", NULL },
{ "redraws", 'r', 0, G_OPTION_ARG_NONE, &redraws, "show redraw regions&q...
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
...p;use_image, "use an intermediate image surface for drawing", NULL },
{ "max-runtime", 0, 0, G_OPTION_ARG_INT, &max_runtime, "maximum time scripts run before aborting the player", "SECS" },
{ "no-scripts", 0, 0, G_OPTION_ARG_NONE, &no_scripts, "don't execute scripts affecting the application", NULL },
@@ -151,9 +147,11 @@ main (int argc, char *argv[])
s = sanitize_url (argv[1]);
loader = swfdec_gtk_loader_new (s);
g_free (s);
- if (loader->error) {
- g_printerr ("Couldn't open file \"%s\"...