diff options
author | Wouter Cloetens <wouter@mind.be> | 2008-02-22 07:20:03 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-02-22 07:20:03 +0000 |
commit | fbcd082d9c736d4be9d0b35bc92402cc5a016fdd (patch) | |
tree | 898ae10059fdd7cbc236682bef99cc7d1cb10b52 /configure.ac | |
parent | b4ec0f41568d28f58f41ee1abcb823432126cf5d (diff) | |
download | gst-plugins-bad-fbcd082d9c736d4be9d0b35bc92402cc5a016fdd.tar.gz gst-plugins-bad-fbcd082d9c736d4be9d0b35bc92402cc5a016fdd.tar.bz2 gst-plugins-bad-fbcd082d9c736d4be9d0b35bc92402cc5a016fdd.zip |
Implement zero-copy and make the buffer size configurable.
Original commit message from CVS:
Patch by: Wouter Cloetens <wouter at mind dot be>
* configure.ac:
* ext/soup/gstsouphttpsrc.c: (gst_soup_http_src_cancel_message),
(gst_soup_http_src_finished_cb), (gst_soup_http_src_chunk_free),
(gst_soup_http_src_chunk_allocator),
(gst_soup_http_src_got_chunk_cb), (gst_soup_http_src_create),
(gst_soup_http_src_start), (gst_soup_http_src_set_proxy):
* ext/soup/gstsouphttpsrc.h:
Implement zero-copy and make the buffer size configurable.
Prefix proxy URIs with "http://" if they don't start with it
already and catch errors earlier, fixes hanging in some situations.
Fixes bug #514948.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f186b5e4..655ecc28 100644 --- a/configure.ac +++ b/configure.ac @@ -764,7 +764,7 @@ AG_GST_CHECK_FEATURE(NEON, [neon http client plugins], neonhttpsrc, [ dnl *** soup *** translit(dnm, m, l) AM_CONDITIONAL(USE_SOUP, true) AG_GST_CHECK_FEATURE(SOUP, [soup http client plugin (2.4)], souphttpsrc, [ - PKG_CHECK_MODULES(SOUP, libsoup-2.4, HAVE_SOUP="yes", [ + PKG_CHECK_MODULES(SOUP, libsoup-2.4 >= 2.3.2, HAVE_SOUP="yes", [ HAVE_SOUP="no" AC_MSG_RESULT(no) ]) |