mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
rtspsrc: Consider "451: Parameter Not Understood" when handling broken control urls
similar to https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3854 it seems that some implementations return this when the server does not implement URL handling correctly this fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/2334 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4173>
This commit is contained in:
parent
6b16b41889
commit
bb711444b6
1 changed files with 1 additions and 0 deletions
|
@ -7582,6 +7582,7 @@ gst_rtspsrc_setup_streams_start (GstRTSPSrc * src, gboolean async)
|
|||
case GST_RTSP_STS_BAD_REQUEST:
|
||||
case GST_RTSP_STS_NOT_FOUND:
|
||||
case GST_RTSP_STS_METHOD_NOT_VALID_IN_THIS_STATE:
|
||||
case GST_RTSP_STS_PARAMETER_NOT_UNDERSTOOD:
|
||||
/* There are various non-compliant servers that don't require control
|
||||
* URLs that are not resolved correctly but instead are just appended.
|
||||
* See e.g.
|
||||
|
|
Loading…
Reference in a new issue