From: Krzysztof Kotlenga Date: Sun, 22 Feb 2015 00:49:52 +0000 (+0100) Subject: rtspsrc: improve error message when unauthorized X-Git-Tag: 1.6.0~583 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3ca4d1c86813338915e2e143e4d4675e40c45ea;p=platform%2Fupstream%2Fgst-plugins-good.git rtspsrc: improve error message when unauthorized Make use of NOT_AUTHORIZED error code instead of falling back to generic READ error. https://bugzilla.gnome.org/show_bug.cgi?id=601733 --- diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index a1a8f0f..f30ff08 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -5717,6 +5717,10 @@ error_response: GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (NULL), ("%s", response->type_data.response.reason)); break; + case GST_RTSP_STS_UNAUTHORIZED: + GST_ELEMENT_ERROR (src, RESOURCE, NOT_AUTHORIZED, (NULL), ("%s", + response->type_data.response.reason)); + break; case GST_RTSP_STS_MOVED_PERMANENTLY: case GST_RTSP_STS_MOVE_TEMPORARILY: {