rtspsrc: make some errors as warnings

Avoid spamming the testsuite with these error debug lines.
This commit is contained in:
Wim Taymans 2010-06-18 16:56:19 +02:00
parent 0773eed960
commit 651c82a01f

View 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;
}
}