diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-08-16 16:07:04 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-08-16 16:07:04 +0200 |
commit | 6fa73b255278edf0350b7860beca72abd5f97633 (patch) | |
tree | 6351614ff86b8b047ff6c07ac9f7ce404b48450b | |
parent | 0e9ce1caf387795b4348b1c21abd1e820b3fd40a (diff) |
client: use method to access property
-rw-r--r-- | gst/rtsp-server/rtsp-client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/rtsp-server/rtsp-client.c b/gst/rtsp-server/rtsp-client.c index 9b8e6ce..3d4dd69 100644 --- a/gst/rtsp-server/rtsp-client.c +++ b/gst/rtsp-server/rtsp-client.c @@ -1070,6 +1070,7 @@ create_sdp (GstRTSPClient * client, GstRTSPMedia * media) GstSDPMessage *sdp; GstSDPInfo info; const gchar *proto; + GstRTSPLowerTrans protocols; gst_sdp_message_new (&sdp); @@ -1092,7 +1093,8 @@ create_sdp (GstRTSPClient * client, GstRTSPMedia * media) gst_sdp_message_add_attribute (sdp, "control", "*"); info.server_proto = proto; - if (media->protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST) + protocols = gst_rtsp_media_get_protocols (media); + if (protocols & GST_RTSP_LOWER_TRANS_UDP_MCAST) info.server_ip = gst_rtsp_media_get_multicast_group (media); else info.server_ip = g_strdup (client->server_ip); |