rtspsrc: improve error message when unauthorized
authorKrzysztof Kotlenga <pocek@users.sf.net>
Sun, 22 Feb 2015 00:49:52 +0000 (01:49 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Tue, 24 Feb 2015 09:08:27 +0000 (11:08 +0200)
Make use of NOT_AUTHORIZED error code instead of falling back to generic
READ error.

https://bugzilla.gnome.org/show_bug.cgi?id=601733

gst/rtsp/gstrtspsrc.c

index a1a8f0f..f30ff08 100644 (file)
@@ -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:
       {