search for: soup_session_async_new

Displaying 6 results from an estimated 6 matches for "soup_session_async_new".

2007 Oct 21
0
2 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_widget.c
...ader.c @@ -206,7 +206,8 @@ swfdec_gtk_loader_class_init (SwfdecGtkLoaderClass *klass) loader_class->load = swfdec_gtk_loader_load; loader_class->close = swfdec_gtk_loader_close; - g_thread_init (NULL); + if (!g_thread_supported ()) + g_thread_init (NULL); klass->session = soup_session_async_new (); #endif } commit 3dd1855445038e6c3793b98bbfcf77035413a4cc Author: Benjamin Otte <otte at gnome.org> Date: Sun Oct 21 18:01:47 2007 +0200 only handle keys if there's a player to handle them diff --git a/libswfdec-gtk/swfdec_gtk_widget.c b/libswfdec-gtk/swfdec_gtk_widget.c inde...
2007 Aug 02
1
libswfdec-gtk/swfdec_gtk_loader.c
libswfdec-gtk/swfdec_gtk_loader.c | 1 + 1 files changed, 1 insertion(+) New commits: diff-tree 4d1ee537d4cd388a8b21003496d3511df6f0549d (from ba4f1da69d0c74c45b0b4d92330f2203d258bb49) Author: Benjamin Otte <otte at gnome.org> Date: Thu Aug 2 13:06:55 2007 +0200 keep a reference to the message, since it's unreffed automagically diff --git a/libswfdec-gtk/swfdec_gtk_loader.c
2007 Aug 08
0
6 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h libswfdec/swfdec_loader_internal.h libswfdec/swfdec_net_stream_as.c libswfdec/swfdec_net_stream.c
...G_OBJECT_CLASS (klass); @@ -149,6 +163,7 @@ swfdec_gtk_loader_class_init (SwfdecGtkL object_class->dispose = swfdec_gtk_loader_dispose; loader_class->load = swfdec_gtk_loader_load; + loader_class->close = swfdec_gtk_loader_close; g_thread_init (NULL); klass->session = soup_session_async_new (); diff-tree 58b73bfa1e54bd95744e89e7f9fc6902ab1a48d3 (from 36cb0e40b75982fd64589be06bdeebbf4957817e) Author: Benjamin Otte <otte at gnome.org> Date: Wed Aug 8 10:59:00 2007 +0200 make the closing code more strict diff --git a/libswfdec/swfdec_loader.c b/libswfdec/swfdec_loader.c ind...
2008 Jan 07
0
3 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/swfdec_as_array.c libswfdec/swfdec_asbroadcaster.c libswfdec/swfdec_as_function.c libswfdec/swfdec_as_types.c libswfdec/swfdec_xml.c
...bswfdec-gtk/swfdec_gtk_loader.c @@ -209,8 +209,6 @@ swfdec_gtk_loader_class_init (SwfdecGtkLoaderClass *klass) loader_class->load = swfdec_gtk_loader_load; loader_class->close = swfdec_gtk_loader_close; - if (!g_thread_supported ()) - g_thread_init (NULL); klass->session = soup_session_async_new (); #endif }
2007 Aug 02
0
15 commits - configure.ac doc/swfdec-sections.txt libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_file_loader.c libswfdec/swfdec_file_loader.h
...Class *object_class = G_OBJECT_CLASS (klass); SwfdecLoaderClass *loader_class = SWFDEC_LOADER_CLASS (klass); - gnome_vfs_init (); - object_class->dispose = swfdec_gtk_loader_dispose; loader_class->load = swfdec_gtk_loader_load; + + g_thread_init (NULL); + klass->session = soup_session_async_new (); } static void @@ -210,13 +159,10 @@ swfdec_gtk_loader_init (SwfdecGtkLoader * swfdec_gtk_loader_new: * @uri: The location of the file to open * - * Creates a new loader for the given URI using gnome-vfs (or using the local - * file backend, if compiled without gnome-vfs support). The...
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
...S (klass); SwfdecStreamClass *stream_class = SWFDEC_STREAM_CLASS (klass); SwfdecLoaderClass *loader_class = SWFDEC_LOADER_CLASS (klass); @@ -213,7 +198,6 @@ swfdec_gtk_loader_class_init (SwfdecGtkLoaderClass *klass) loader_class->load = swfdec_gtk_loader_load; klass->session = soup_session_async_new (); -#endif } static void diff --git a/test/rtmp/Makefile.am b/test/rtmp/Makefile.am index a0c4546..cfe8416 100644 --- a/test/rtmp/Makefile.am +++ b/test/rtmp/Makefile.am @@ -3,6 +3,6 @@ noinst_PROGRAMS = rtmp-server TESTS = $(check_PROGRAMS) rtmp_server_SOURCES = rtmp_server.c -rtmp_server...