mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
ext/soup/gstsouphttpsrc.c: Fix Soup HTTP source seeking.
Original commit message from CVS: * ext/soup/gstsouphttpsrc.c: Fix Soup HTTP source seeking. Patch By: Wouter Cloetens <wouter at mind be> Fixes: #540300 * tests/check/elements/.cvsignore: Ignore new check programs.
This commit is contained in:
parent
f505a291ff
commit
6b188cbf2c
3 changed files with 17 additions and 1 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* ext/soup/gstsouphttpsrc.c:
|
||||
Fix Soup HTTP source seeking.
|
||||
Patch By: Wouter Cloetens <wouter at mind be>
|
||||
Fixes: #540300
|
||||
|
||||
* tests/check/elements/.cvsignore:
|
||||
Ignore new check programs.
|
||||
|
||||
2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -922,6 +922,7 @@ gst_soup_http_src_build_message (GstSoupHTTPSrc * src)
|
|||
*cookie);
|
||||
}
|
||||
}
|
||||
src->retry = FALSE;
|
||||
|
||||
g_signal_connect (src->msg, "got_headers",
|
||||
G_CALLBACK (gst_soup_http_src_got_headers_cb), src);
|
||||
|
@ -965,7 +966,7 @@ gst_soup_http_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
|
|||
src->outbuf = outbuf;
|
||||
do {
|
||||
if (src->interrupted) {
|
||||
gst_soup_http_src_cancel_message (src);
|
||||
GST_DEBUG_OBJECT (src, "interrupted");
|
||||
break;
|
||||
}
|
||||
if (src->retry) {
|
||||
|
|
5
tests/check/elements/.gitignore
vendored
5
tests/check/elements/.gitignore
vendored
|
@ -14,14 +14,19 @@ avimux
|
|||
avisubtitle
|
||||
cmmldec
|
||||
cmmlenc
|
||||
deinterleave
|
||||
equalizer
|
||||
gdkpixbufsink
|
||||
icydemux
|
||||
id3demux
|
||||
id3v2mux
|
||||
interleave
|
||||
level
|
||||
matroskamux
|
||||
multifile
|
||||
rganalysis
|
||||
rglimiter
|
||||
rgvolume
|
||||
rtp-payloading
|
||||
souphttpsrc
|
||||
spectrum
|
||||
|
|
Loading…
Reference in a new issue