GNOME Bugzilla – Bug 711607
client: make make_path_from_uri a vmethod
Last modified: 2014-02-25 22:28:14 UTC
Created attachment 259179 [details] [review] client: make make_path_from_uri a vmethod Make it possible to transform an url into a path in a more flexible way, with the possibility to do e.g url mappings (based on the query part of the the url).
Review of attachment 259179 [details] [review]: Makes sense I guess :) ::: gst/rtsp-server/rtsp-client.c @@ +155,3 @@ klass->params_set = default_params_set; klass->params_get = default_params_get; + klass->make_path_from_uri = make_path_from_uri; Better call it default_make_path_from_uri ::: gst/rtsp-server/rtsp-client.h @@ +93,3 @@ GstRTSPResult (*params_set) (GstRTSPClient *client, GstRTSPContext *ctx); GstRTSPResult (*params_get) (GstRTSPClient *client, GstRTSPContext *ctx); + gchar * (*make_path_from_uri) (GstRTSPClient *client, GstRTSPUrl *uri); Can the GstRTSPUrl be const? If so, do that
Created attachment 259640 [details] [review] client: make make_path_from_uri a vmethod
commit 8ce453d97d5a986f68cf34a57b0d663539634614 Author: Patricia Muscalu <patricia@axis.com> Date: Thu Nov 7 13:22:09 2013 +0100 client: make make_path_from_uri a vmethod