rtspsrc: make some errors as warnings
authorWim Taymans <wim.taymans@collabora.co.uk>
Fri, 18 Jun 2010 14:56:19 +0000 (16:56 +0200)
committerWim Taymans <wim.taymans@collabora.co.uk>
Fri, 18 Jun 2010 14:56:19 +0000 (16:56 +0200)
Avoid spamming the testsuite with these error debug lines.

gst/rtsp/gstrtspsrc.c

index f6da483..db5429c 100644 (file)
@@ -5310,12 +5310,12 @@ gst_rtspsrc_open (GstRTSPSrc * src)
   /* ERRORS */
 no_sdp:
   {
-    GST_ERROR_OBJECT (src, "can't get sdp");
+    GST_WARNING_OBJECT (src, "can't get sdp");
     return FALSE;
   }
 open_failed:
   {
-    GST_ERROR_OBJECT (src, "can't setup streaming from sdp");
+    GST_WARNING_OBJECT (src, "can't setup streaming from sdp");
     return FALSE;
   }
 }