Removed a check (see that the file exists locally ??) to enable network streaming...
authorWim Taymans <wim.taymans@gmail.com>
Sat, 16 Jun 2001 13:24:26 +0000 (13:24 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Sat, 16 Jun 2001 13:24:26 +0000 (13:24 +0000)
Original commit message from CVS:
Removed a check (see that the file exists locally ??) to enable network
streaming with gnomevfssrc again.

gstplay/gstplay.c

index 9956dc2..123143a 100644 (file)
@@ -388,11 +388,6 @@ gst_play_set_uri (GstPlay *play, const guchar *uri)
        if (priv->uri)
                g_free (priv->uri);
 
-       /* see if the file actually exists */
-       file = fopen (uri, "r");
-       if (!file)
-               return GST_PLAY_CANNOT_PLAY;
-
        /* see if it looks like an URI */
        if ((uriloc = strstr (uri, ":/"))) {
          priv->src = gst_elementfactory_make ("gnomevfssrc", "srcelement");