mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
rtspsrc: make some errors as warnings
Avoid spamming the testsuite with these error debug lines.
This commit is contained in:
parent
0773eed960
commit
651c82a01f
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue