mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ext/gnomevfs/gstgnomevfssrc.c: This patch removes the RANDOM flag that was incorrectly introduced with revision 1.91....
Original commit message from CVS: patch by: Wim Taymans <wim at fluendo dot com> * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start): This patch removes the RANDOM flag that was incorrectly introduced with revision 1.91. Fixes #354590
This commit is contained in:
parent
fa3f004954
commit
a66ee4d6da
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-09-07 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
patch by: Wim Taymans <wim at fluendo dot com>
|
||||
|
||||
* ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
|
||||
This patch removes the RANDOM flag that was incorrectly introduced with
|
||||
revision 1.91. Fixes #354590
|
||||
|
||||
2006-09-05 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* tests/check/Makefile.am:
|
||||
|
|
|
@ -789,7 +789,7 @@ gst_gnome_vfs_src_start (GstBaseSrc * basesrc)
|
|||
GnomeVFSOpenMode mode;
|
||||
|
||||
/* this can block... */
|
||||
mode = GNOME_VFS_OPEN_READ | GNOME_VFS_OPEN_RANDOM;
|
||||
mode = GNOME_VFS_OPEN_READ;
|
||||
res = gnome_vfs_open_uri (&src->handle, src->uri, mode);
|
||||
if (res != GNOME_VFS_OK)
|
||||
goto open_failed;
|
||||
|
|
Loading…
Reference in a new issue