[gst-cvs] gst-plugins-good: rtspsrc: make some errors as warnings

Wim Taymans wtay at kemper.freedesktop.org
Fri Jun 18 07:56:54 PDT 2010


Module: gst-plugins-good
Branch: master
Commit: 651c82a01f9fc069dc28d52078d1253860cd4a9d
URL:    http://cgit.freedesktop.org/gstreamer/gst-plugins-good/commit/?id=651c82a01f9fc069dc28d52078d1253860cd4a9d

Author: Wim Taymans <wim.taymans at collabora.co.uk>
Date:   Fri Jun 18 16:56:19 2010 +0200

rtspsrc: make some errors as warnings

Avoid spamming the testsuite with these error debug lines.

---

 gst/rtsp/gstrtspsrc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c
index f6da483..db5429c 100644
--- a/gst/rtsp/gstrtspsrc.c
+++ b/gst/rtsp/gstrtspsrc.c
@@ -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;
   }
 }





More information about the Gstreamer-commits mailing list