mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
ext/gnomevfs/gstgnomevfssrc.c: SERVICE_NOT_AVAILABLE happens for example when you're trying to play an http:// stream...
Original commit message from CVS: * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start): SERVICE_NOT_AVAILABLE happens for example when you're trying to play an http:// stream from a server that's not serving
This commit is contained in:
parent
055cf96c4d
commit
3f905bd710
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
|
||||
SERVICE_NOT_AVAILABLE happens for example when you're trying to
|
||||
play an http:// stream from a server that's not serving
|
||||
|
||||
2006-01-30 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET):
|
||||
|
|
|
@ -1088,7 +1088,8 @@ gst_gnome_vfs_src_start (GstBaseSrc * basesrc)
|
|||
gst_gnome_vfs_src_pop_callbacks (src);
|
||||
audiocast_thread_kill (src);
|
||||
|
||||
if (res == GNOME_VFS_ERROR_NOT_FOUND) {
|
||||
if (res == GNOME_VFS_ERROR_NOT_FOUND ||
|
||||
res == GNOME_VFS_ERROR_SERVICE_NOT_AVAILABLE) {
|
||||
GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL),
|
||||
("Could not open vfs file \"%s\" for reading: %s",
|
||||
filename, gnome_vfs_result_to_string (res)));
|
||||
|
|
Loading…
Reference in a new issue