From 0671c485e087c5d656053f348037a3235e414701 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Olivier=20Cr=C3=AAte?= Date: Wed, 19 Nov 2008 18:17:35 -0500 Subject: [PATCH] Revert "Save the to/from addresses and put them in newly created buffers" This reverts commit cbe7189aaa53093a593e5b07cc8de5050e95ee98. --- gst/gstnicesrc.c | 83 -------------------------------------------------------- gst/gstnicesrc.h | 15 ++-------- 2 files changed, 3 insertions(+), 95 deletions(-) diff --git a/gst/gstnicesrc.c b/gst/gstnicesrc.c index 3c55114..895c8bd 100644 --- a/gst/gstnicesrc.c +++ b/gst/gstnicesrc.c @@ -206,9 +206,6 @@ gst_nice_src_read_callback (NiceAgent *agent, if (GST_PAD_CAPS (basesrc->srcpad)) GST_BUFFER_CAPS (mybuf) = gst_caps_ref (GST_PAD_CAPS (basesrc->srcpad)); - mybuf->from = nicesrc->from; - mybuf->to = nicesrc->to; - nicesrc->outbuf = GST_BUFFER_CAST (mybuf); g_main_loop_quit (nicesrc->mainloop); @@ -221,10 +218,8 @@ gst_nice_src_unlock_idler (gpointer data) g_main_loop_quit (nicesrc->mainloop); - GST_OBJECT_LOCK (nicesrc); g_source_unref (nicesrc->idle_source); nicesrc->idle_source = NULL; - GST_OBJECT_UNLOCK (nicesrc); return FALSE; } @@ -303,10 +298,6 @@ gst_nice_src_dispose (GObject *object) { GstNiceSrc *src = GST_NICE_SRC (object); - if (src->new_selected_pair_id) - g_signal_handler_disconnect (src->agent, src->new_selected_pair_id); - src->new_selected_pair_id = 0; - if (src->agent) g_object_unref (src->agent); src->agent = NULL; @@ -380,69 +371,6 @@ gst_nice_src_get_property ( } } -static void -nice_address_to_gst_net_address (NiceAddress *niceaddr, GstNetAddress *gstaddr) -{ - switch (niceaddr->s.addr.sa_family) - { - case AF_INET: - gst_netaddress_set_ip4_address (gstaddr, - niceaddr->s.ip4.sin_addr.s_addr, - niceaddr->s.ip4.sin_port); - break; - case AF_INET6: - gst_netaddress_set_ip6_address (gstaddr, - niceaddr->s.ip6.sin6_addr.s6_addr, - niceaddr->s.ip6.sin6_port); - break; - default: - break; - } -} - -static void -new_selected_pair_cb (NiceAgent *agent, guint stream_id, guint component_id, - gchar *local_cand, gchar *remote_cand, GstNiceSrc *src) -{ - GST_OBJECT_LOCK (src); - - if (stream_id == src->stream_id && component_id == src->component_id) - { - GSList *local_candidates = nice_agent_get_local_candidates ( - src->agent, stream_id, component_id); - GSList *remote_candidates = nice_agent_get_remote_candidates ( - src->agent, stream_id, component_id); - GSList *item = NULL; - - for (item = local_candidates; item; item = g_slist_next (item)) - { - NiceCandidate *cand = item->data; - if (!strcmp (local_cand, cand->foundation)) - { - nice_address_to_gst_net_address (&cand->addr, &src->to); - break; - } - } - - for (item = remote_candidates; item; item = g_slist_next (item)) - { - NiceCandidate *cand = item->data; - if (!strcmp (remote_cand, cand->foundation)) - { - nice_address_to_gst_net_address (&cand->addr, &src->from); - break; - } - } - - g_slist_foreach (local_candidates, (GFunc) nice_candidate_free, NULL); - g_slist_free (local_candidates); - g_slist_foreach (remote_candidates, (GFunc) nice_candidate_free, NULL); - g_slist_free (remote_candidates); - } - - GST_OBJECT_UNLOCK (src); -} - static GstStateChangeReturn gst_nice_src_change_state (GstElement * element, GstStateChange transition) { @@ -461,25 +389,14 @@ gst_nice_src_change_state (GstElement * element, GstStateChange transition) } else { - GST_OBJECT_LOCK (src); nice_agent_attach_recv (src->agent, src->stream_id, src->component_id, g_main_loop_get_context (src->mainloop), gst_nice_src_read_callback, (gpointer) src); - - if (!src->new_selected_pair_id) - src->new_selected_pair_id = g_signal_connect (src->agent, - "new-selected-pair", G_CALLBACK (new_selected_pair_cb), src); - GST_OBJECT_UNLOCK (src); } break; case GST_STATE_CHANGE_READY_TO_NULL: - GST_OBJECT_LOCK (src); nice_agent_attach_recv (src->agent, src->stream_id, src->component_id, g_main_loop_get_context (src->mainloop), NULL, NULL); - if (src->new_selected_pair_id) - g_signal_handler_disconnect (src->agent, src->new_selected_pair_id); - src->new_selected_pair_id = 0; - GST_OBJECT_UNLOCK (src); break; default: break; diff --git a/gst/gstnicesrc.h b/gst/gstnicesrc.h index 960328d..bac19a2 100644 --- a/gst/gstnicesrc.h +++ b/gst/gstnicesrc.h @@ -63,22 +63,13 @@ struct _GstNiceSrc { GstBaseSrc parent; GstPad *srcpad; - GMainLoop *mainloop; - - /* Protected by the object lock */ - gboolean unlocked; - GSource *idle_source; NiceAgent *agent; guint stream_id; guint component_id; - - /* Protected by the stream lock */ + GMainLoop *mainloop; GstBuffer *outbuf; - - /* Protected by the object lock */ - gulong new_selected_pair_id; - GstNetAddress from; - GstNetAddress to; + gboolean unlocked; + GSource *idle_source; }; typedef struct _GstNiceSrcClass GstNiceSrcClass; -- 2.11.4.GIT