2 * This file is part of the Nice GLib ICE library.
4 * (C) 2006, 2007 Collabora Ltd.
5 * Contact: Dafydd Harries
6 * (C) 2006, 2007 Nokia Corporation. All rights reserved.
7 * Contact: Kai Vehmanen
9 * The contents of this file are subject to the Mozilla Public License Version
10 * 1.1 (the "License"); you may not use this file except in compliance with
11 * the License. You may obtain a copy of the License at
12 * http://www.mozilla.org/MPL/
14 * Software distributed under the License is distributed on an "AS IS" basis,
15 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
16 * for the specific language governing rights and limitations under the
19 * The Original Code is the Nice GLib ICE library.
21 * The Initial Developers of the Original Code are Collabora Ltd and Nokia
22 * Corporation. All Rights Reserved.
25 * Dafydd Harries, Collabora Ltd.
27 * Alternatively, the contents of this file may be used under the terms of the
28 * the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
29 * case the provisions of LGPL are applicable instead of those above. If you
30 * wish to allow use of your version of this file only under the terms of the
31 * LGPL and not to allow others to use your version of this file under the
32 * MPL, indicate your decision by deleting the provisions above and replace
33 * them with the notice and other provisions required by the LGPL. If you do
34 * not delete the provisions above, a recipient may use your version of this
35 * file under either the MPL or the LGPL.
43 #include "gstnicesrc.h"
45 GST_DEBUG_CATEGORY_STATIC (nicesrc_debug
);
46 #define GST_CAT_DEFAULT nicesrc_debug
49 #define BUFFER_SIZE (65536)
63 gst_nice_src_unlock_stop (
67 gst_nice_src_set_property (
74 gst_nice_src_get_property (
82 gst_nice_src_dispose (GObject
*object
);
84 static GstStateChangeReturn
85 gst_nice_src_change_state (
87 GstStateChange transition
);
89 static GstStaticPadTemplate gst_nice_src_src_template
=
90 GST_STATIC_PAD_TEMPLATE (
96 G_DEFINE_TYPE (GstNiceSrc
, gst_nice_src
, GST_TYPE_BASE_SRC
);
107 gst_nice_src_class_init (GstNiceSrcClass
*klass
)
109 GstBaseSrcClass
*gstbasesrc_class
;
110 GstElementClass
*gstelement_class
;
111 GObjectClass
*gobject_class
;
113 GST_DEBUG_CATEGORY_INIT (nicesrc_debug
, "nicesrc",
114 0, "libnice source");
116 gstbasesrc_class
= (GstBaseSrcClass
*) klass
;
117 gstbasesrc_class
->create
= GST_DEBUG_FUNCPTR (gst_nice_src_create
);
118 gstbasesrc_class
->unlock
= GST_DEBUG_FUNCPTR (gst_nice_src_unlock
);
119 gstbasesrc_class
->unlock_stop
= GST_DEBUG_FUNCPTR (gst_nice_src_unlock_stop
);
121 gobject_class
= (GObjectClass
*) klass
;
122 gobject_class
->set_property
= gst_nice_src_set_property
;
123 gobject_class
->get_property
= gst_nice_src_get_property
;
124 gobject_class
->dispose
= gst_nice_src_dispose
;
126 gstelement_class
= (GstElementClass
*) klass
;
127 gstelement_class
->change_state
= gst_nice_src_change_state
;
129 gst_element_class_add_pad_template (gstelement_class
,
130 gst_static_pad_template_get (&gst_nice_src_src_template
));
131 gst_element_class_set_metadata (gstelement_class
,
134 "Interactive UDP connectivity establishment",
135 "Dafydd Harries <dafydd.harries@collabora.co.uk>");
137 g_object_class_install_property (gobject_class
, PROP_AGENT
,
138 g_param_spec_object (
141 "The NiceAgent this source is bound to",
145 g_object_class_install_property (gobject_class
, PROP_STREAM
,
149 "The ID of the stream to read from",
155 g_object_class_install_property (gobject_class
, PROP_COMPONENT
,
159 "The ID of the component to read from",
167 gst_nice_src_init (GstNiceSrc
*src
)
169 gst_base_src_set_live (GST_BASE_SRC (src
), TRUE
);
170 gst_base_src_set_format (GST_BASE_SRC (src
), GST_FORMAT_TIME
);
171 gst_base_src_set_do_timestamp (GST_BASE_SRC (src
), TRUE
);
174 src
->component_id
= 0;
175 src
->mainctx
= g_main_context_new ();
176 src
->mainloop
= g_main_loop_new (src
->mainctx
, FALSE
);
177 src
->unlocked
= FALSE
;
178 src
->idle_source
= NULL
;
179 src
->outbufs
= g_queue_new ();
183 gst_nice_src_read_callback (NiceAgent
*agent
,
190 GstBaseSrc
*basesrc
= GST_BASE_SRC (data
);
191 GstNiceSrc
*nicesrc
= GST_NICE_SRC (basesrc
);
192 GstBuffer
*buffer
= NULL
;
195 GST_LOG_OBJECT (agent
, "Got buffer, getting out of the main loop");
197 buffer
= gst_buffer_new_allocate (NULL
, len
, 1);
198 gst_buffer_map (buffer
, &info
, GST_MAP_WRITE
);
199 memcpy (info
.data
, buf
, len
);
200 gst_buffer_unmap (buffer
, &info
);
201 g_queue_push_tail (nicesrc
->outbufs
, buffer
);
203 g_main_loop_quit (nicesrc
->mainloop
);
207 gst_nice_src_unlock_idler (gpointer data
)
209 GstNiceSrc
*nicesrc
= GST_NICE_SRC (data
);
211 GST_OBJECT_LOCK (nicesrc
);
212 if (nicesrc
->unlocked
)
213 g_main_loop_quit (nicesrc
->mainloop
);
215 if (nicesrc
->idle_source
) {
216 g_source_destroy (nicesrc
->idle_source
);
217 g_source_unref (nicesrc
->idle_source
);
218 nicesrc
->idle_source
= NULL
;
220 GST_OBJECT_UNLOCK (nicesrc
);
226 gst_nice_src_unlock (GstBaseSrc
*src
)
228 GstNiceSrc
*nicesrc
= GST_NICE_SRC (src
);
230 GST_OBJECT_LOCK (src
);
231 nicesrc
->unlocked
= TRUE
;
233 g_main_loop_quit (nicesrc
->mainloop
);
235 if (!nicesrc
->idle_source
) {
236 nicesrc
->idle_source
= g_idle_source_new ();
237 g_source_set_priority (nicesrc
->idle_source
, G_PRIORITY_HIGH
);
238 g_source_set_callback (nicesrc
->idle_source
, gst_nice_src_unlock_idler
, src
, NULL
);
239 g_source_attach (nicesrc
->idle_source
, g_main_loop_get_context (nicesrc
->mainloop
));
241 GST_OBJECT_UNLOCK (src
);
247 gst_nice_src_unlock_stop (GstBaseSrc
*src
)
249 GstNiceSrc
*nicesrc
= GST_NICE_SRC (src
);
251 GST_OBJECT_LOCK (src
);
252 nicesrc
->unlocked
= FALSE
;
253 if (nicesrc
->idle_source
) {
254 g_source_destroy (nicesrc
->idle_source
);
255 g_source_unref(nicesrc
->idle_source
);
257 nicesrc
->idle_source
= NULL
;
258 GST_OBJECT_UNLOCK (src
);
264 gst_nice_src_create (
270 GstNiceSrc
*nicesrc
= GST_NICE_SRC (basesrc
);
272 GST_LOG_OBJECT (nicesrc
, "create called");
274 nicesrc
->offset
= offset
;
276 GST_OBJECT_LOCK (basesrc
);
277 if (nicesrc
->unlocked
) {
278 GST_OBJECT_UNLOCK (basesrc
);
279 return GST_FLOW_WRONG_STATE
;
281 GST_OBJECT_UNLOCK (basesrc
);
283 if (g_queue_is_empty (nicesrc
->outbufs
))
284 g_main_loop_run (nicesrc
->mainloop
);
286 *buffer
= g_queue_pop_head (nicesrc
->outbufs
);
287 if (*buffer
!= NULL
) {
288 GST_LOG_OBJECT (nicesrc
, "Got buffer, pushing");
291 GST_LOG_OBJECT (nicesrc
, "Got interrupting, returning wrong-state");
292 return GST_FLOW_WRONG_STATE
;
298 gst_nice_src_dispose (GObject
*object
)
300 GstNiceSrc
*src
= GST_NICE_SRC (object
);
303 g_object_unref (src
->agent
);
307 g_main_loop_unref (src
->mainloop
);
308 src
->mainloop
= NULL
;
311 g_main_context_unref (src
->mainctx
);
315 g_queue_free (src
->outbufs
);
318 G_OBJECT_CLASS (gst_nice_src_parent_class
)->dispose (object
);
322 gst_nice_src_set_property (
328 GstNiceSrc
*src
= GST_NICE_SRC (object
);
334 GST_ERROR_OBJECT (object
,
335 "Changing the agent on a nice src not allowed");
337 src
->agent
= g_value_dup_object (value
);
341 src
->stream_id
= g_value_get_uint (value
);
345 src
->component_id
= g_value_get_uint (value
);
349 G_OBJECT_WARN_INVALID_PROPERTY_ID (object
, prop_id
, pspec
);
355 gst_nice_src_get_property (
361 GstNiceSrc
*src
= GST_NICE_SRC (object
);
366 g_value_set_object (value
, src
->agent
);
370 g_value_set_uint (value
, src
->stream_id
);
374 g_value_set_uint (value
, src
->component_id
);
378 G_OBJECT_WARN_INVALID_PROPERTY_ID (object
, prop_id
, pspec
);
383 static GstStateChangeReturn
384 gst_nice_src_change_state (GstElement
* element
, GstStateChange transition
)
387 GstStateChangeReturn ret
;
389 src
= GST_NICE_SRC (element
);
391 switch (transition
) {
392 case GST_STATE_CHANGE_NULL_TO_READY
:
393 if (src
->agent
== NULL
|| src
->stream_id
== 0 || src
->component_id
== 0)
395 GST_ERROR_OBJECT (element
,
396 "Trying to start Nice source without an agent set");
397 return GST_STATE_CHANGE_FAILURE
;
401 nice_agent_attach_recv (src
->agent
, src
->stream_id
, src
->component_id
,
402 src
->mainctx
, gst_nice_src_read_callback
, (gpointer
) src
);
405 case GST_STATE_CHANGE_READY_TO_NULL
:
406 nice_agent_attach_recv (src
->agent
, src
->stream_id
, src
->component_id
,
407 src
->mainctx
, NULL
, NULL
);
413 ret
= GST_ELEMENT_CLASS (gst_nice_src_parent_class
)->change_state (element
,