mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +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>
|
2008-07-19 Jan Schmidt <jan.schmidt@sun.com>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -922,6 +922,7 @@ gst_soup_http_src_build_message (GstSoupHTTPSrc * src)
|
||||||
*cookie);
|
*cookie);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
src->retry = FALSE;
|
||||||
|
|
||||||
g_signal_connect (src->msg, "got_headers",
|
g_signal_connect (src->msg, "got_headers",
|
||||||
G_CALLBACK (gst_soup_http_src_got_headers_cb), src);
|
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;
|
src->outbuf = outbuf;
|
||||||
do {
|
do {
|
||||||
if (src->interrupted) {
|
if (src->interrupted) {
|
||||||
gst_soup_http_src_cancel_message (src);
|
GST_DEBUG_OBJECT (src, "interrupted");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (src->retry) {
|
if (src->retry) {
|
||||||
|
|
5
tests/check/elements/.gitignore
vendored
5
tests/check/elements/.gitignore
vendored
|
@ -14,14 +14,19 @@ avimux
|
||||||
avisubtitle
|
avisubtitle
|
||||||
cmmldec
|
cmmldec
|
||||||
cmmlenc
|
cmmlenc
|
||||||
|
deinterleave
|
||||||
equalizer
|
equalizer
|
||||||
gdkpixbufsink
|
gdkpixbufsink
|
||||||
icydemux
|
icydemux
|
||||||
id3demux
|
id3demux
|
||||||
id3v2mux
|
id3v2mux
|
||||||
|
interleave
|
||||||
level
|
level
|
||||||
matroskamux
|
matroskamux
|
||||||
multifile
|
multifile
|
||||||
|
rganalysis
|
||||||
|
rglimiter
|
||||||
|
rgvolume
|
||||||
rtp-payloading
|
rtp-payloading
|
||||||
souphttpsrc
|
souphttpsrc
|
||||||
spectrum
|
spectrum
|
||||||
|
|
Loading…
Reference in a new issue