GNOME Bugzilla – Bug 601728
[rtspsrc] Add username/password properties
Last modified: 2009-11-18 16:28:45 UTC
Rather than expecting the user to pass rtsp://user:pass@server/ This would allow me to avoid things like: new_mrl = g_strdup_printf ("rtsp://%s:%s@%s", username, password, bvw->priv->mrl + strlen ("rtsp://")); in Totem. Given that GstRTSPUrl already does parsing...
Created attachment 147597 [details] [review] [rtspsrc] Add user-id and user-pw properties So that one doesn't need to modify the URL to have access to authenticated RTSP streams.
Code mostly copied from souphttpsrc. Let me know if you also want gtk-doc annotation added.
commit efc611e42021de4ddfb603288b8eb3e8a3d5e66b Author: Bastien Nocera <hadess@hadess.net> Date: Thu Nov 12 19:11:18 2009 +0000 Add user-id and user-pw properties So that one doesn't need to modify the URL to have access to authenticated RTSP streams. fixes #601728