2 * Copyright (C) 2006 Thomas Vander Stichele <thomas at apestaart dot org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * SECTION:element-gdppay
24 * This element payloads GStreamer buffers and events using the
25 * GStreamer Data Protocol.
29 * gst-launch -v -m videotestsrc num-buffers=50 ! gdppay ! filesink location=test.gdp
30 * ]| This pipeline creates a serialized video stream that can be played back
31 * with the example shown in gdpdepay.
39 #include <gst/dataprotocol/dataprotocol.h>
41 #include "gstgdppay.h"
43 static GstStaticPadTemplate gdp_pay_sink_template =
44 GST_STATIC_PAD_TEMPLATE ("sink",
49 static GstStaticPadTemplate gdp_pay_src_template =
50 GST_STATIC_PAD_TEMPLATE ("src",
53 GST_STATIC_CAPS ("application/x-gdp"));
55 GST_DEBUG_CATEGORY_STATIC (gst_gdp_pay_debug);
56 #define GST_CAT_DEFAULT gst_gdp_pay_debug
58 #define DEFAULT_CRC_HEADER TRUE
59 #define DEFAULT_CRC_PAYLOAD FALSE
60 #define DEFAULT_VERSION GST_DP_VERSION_1_0
71 GST_DEBUG_CATEGORY_INIT (gst_gdp_pay_debug, "gdppay", 0, \
73 #define gst_gdp_pay_parent_class parent_class
74 G_DEFINE_TYPE_WITH_CODE (GstGDPPay, gst_gdp_pay, GST_TYPE_ELEMENT, _do_init);
76 static void gst_gdp_pay_reset (GstGDPPay * this);
78 static GstFlowReturn gst_gdp_pay_chain (GstPad * pad, GstObject * parent,
80 static gboolean gst_gdp_pay_src_event (GstPad * pad, GstObject * parent,
82 static gboolean gst_gdp_pay_sink_event (GstPad * pad, GstObject * parent,
85 static GstStateChangeReturn gst_gdp_pay_change_state (GstElement *
86 element, GstStateChange transition);
88 static void gst_gdp_pay_set_property (GObject * object, guint prop_id,
89 const GValue * value, GParamSpec * pspec);
90 static void gst_gdp_pay_get_property (GObject * object, guint prop_id,
91 GValue * value, GParamSpec * pspec);
93 static void gst_gdp_pay_finalize (GObject * gobject);
96 gst_gdp_pay_class_init (GstGDPPayClass * klass)
98 GObjectClass *gobject_class;
99 GstElementClass *gstelement_class;
101 gobject_class = (GObjectClass *) klass;
102 gstelement_class = (GstElementClass *) klass;
104 gobject_class->set_property = gst_gdp_pay_set_property;
105 gobject_class->get_property = gst_gdp_pay_get_property;
106 gobject_class->finalize = gst_gdp_pay_finalize;
108 g_object_class_install_property (gobject_class, PROP_CRC_HEADER,
109 g_param_spec_boolean ("crc-header", "CRC Header",
110 "Calculate and store a CRC checksum on the header",
111 DEFAULT_CRC_HEADER, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
112 g_object_class_install_property (gobject_class, PROP_CRC_PAYLOAD,
113 g_param_spec_boolean ("crc-payload", "CRC Payload",
114 "Calculate and store a CRC checksum on the payload",
115 DEFAULT_CRC_PAYLOAD, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
116 g_object_class_install_property (gobject_class, PROP_VERSION,
117 g_param_spec_enum ("version", "Version",
118 "Version of the GStreamer Data Protocol",
119 GST_TYPE_DP_VERSION, DEFAULT_VERSION,
120 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
122 gst_element_class_set_details_simple (gstelement_class,
123 "GDP Payloader", "GDP/Payloader",
124 "Payloads GStreamer Data Protocol buffers",
125 "Thomas Vander Stichele <thomas at apestaart dot org>");
127 gst_element_class_add_pad_template (gstelement_class,
128 gst_static_pad_template_get (&gdp_pay_sink_template));
129 gst_element_class_add_pad_template (gstelement_class,
130 gst_static_pad_template_get (&gdp_pay_src_template));
132 gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_gdp_pay_change_state);
136 gst_gdp_pay_init (GstGDPPay * gdppay)
139 gst_pad_new_from_static_template (&gdp_pay_sink_template, "sink");
140 gst_pad_set_chain_function (gdppay->sinkpad,
141 GST_DEBUG_FUNCPTR (gst_gdp_pay_chain));
142 gst_pad_set_event_function (gdppay->sinkpad,
143 GST_DEBUG_FUNCPTR (gst_gdp_pay_sink_event));
144 gst_element_add_pad (GST_ELEMENT (gdppay), gdppay->sinkpad);
147 gst_pad_new_from_static_template (&gdp_pay_src_template, "src");
148 gst_pad_set_event_function (gdppay->srcpad,
149 GST_DEBUG_FUNCPTR (gst_gdp_pay_src_event));
150 gst_element_add_pad (GST_ELEMENT (gdppay), gdppay->srcpad);
152 gdppay->crc_header = DEFAULT_CRC_HEADER;
153 gdppay->crc_payload = DEFAULT_CRC_PAYLOAD;
154 gdppay->header_flag = gdppay->crc_header | gdppay->crc_payload;
155 gdppay->version = DEFAULT_VERSION;
158 gdppay->packetizer = gst_dp_packetizer_new (gdppay->version);
162 gst_gdp_pay_finalize (GObject * gobject)
164 GstGDPPay *this = GST_GDP_PAY (gobject);
166 gst_gdp_pay_reset (this);
167 gst_dp_packetizer_free (this->packetizer);
169 GST_CALL_PARENT (G_OBJECT_CLASS, finalize, (gobject));
173 gst_gdp_pay_reset (GstGDPPay * this)
175 GST_DEBUG_OBJECT (this, "Resetting GDP object");
176 /* clear the queued buffers */
177 while (this->queue) {
180 buffer = GST_BUFFER_CAST (this->queue->data);
182 /* delete buffer from queue now */
183 this->queue = g_list_delete_link (this->queue, this->queue);
185 gst_buffer_unref (buffer);
188 gst_caps_unref (this->caps);
191 if (this->caps_buf) {
192 gst_buffer_unref (this->caps_buf);
193 this->caps_buf = NULL;
196 gst_buffer_unref (this->tag_buf);
197 this->tag_buf = NULL;
199 if (this->new_segment_buf) {
200 gst_buffer_unref (this->new_segment_buf);
201 this->new_segment_buf = NULL;
203 this->sent_streamheader = FALSE;
207 /* set OFFSET and OFFSET_END with running count */
209 gst_gdp_stamp_buffer (GstGDPPay * this, GstBuffer * buffer)
211 GST_BUFFER_OFFSET (buffer) = this->offset;
212 GST_BUFFER_OFFSET_END (buffer) = this->offset + gst_buffer_get_size (buffer);
213 this->offset = GST_BUFFER_OFFSET_END (buffer);
217 gst_gdp_buffer_from_caps (GstGDPPay * this, GstCaps * caps)
219 GstBuffer *headerbuf;
220 GstBuffer *payloadbuf;
221 guint8 *header, *payload;
224 if (!this->packetizer->packet_from_caps (caps, this->header_flag, &len,
228 GST_LOG_OBJECT (this, "creating GDP header and payload buffer from caps");
229 headerbuf = gst_buffer_new ();
230 gst_buffer_take_memory (headerbuf, -1,
231 gst_memory_new_wrapped (0, header, g_free, len, 0, len));
233 payloadbuf = gst_buffer_new ();
234 plen = gst_dp_header_payload_length (header);
235 gst_buffer_take_memory (payloadbuf, -1,
236 gst_memory_new_wrapped (0, payload, g_free, plen, 0, plen));
238 return gst_buffer_join (headerbuf, payloadbuf);
243 GST_WARNING_OBJECT (this, "could not create GDP header from caps");
249 gst_gdp_pay_buffer_from_buffer (GstGDPPay * this, GstBuffer * buffer)
251 GstBuffer *headerbuf;
255 if (!this->packetizer->header_from_buffer (buffer, this->header_flag, &len,
259 GST_LOG_OBJECT (this, "creating GDP header and payload buffer from buffer");
260 headerbuf = gst_buffer_new ();
261 gst_buffer_take_memory (headerbuf, -1,
262 gst_memory_new_wrapped (0, header, g_free, len, 0, len));
264 /* we do not want to lose the ref on the incoming buffer */
265 gst_buffer_ref (buffer);
267 return gst_buffer_join (headerbuf, buffer);
272 GST_WARNING_OBJECT (this, "could not create GDP header from buffer");
278 gst_gdp_buffer_from_event (GstGDPPay * this, GstEvent * event)
280 GstBuffer *headerbuf;
281 GstBuffer *payloadbuf;
282 guint8 *header, *payload;
287 this->packetizer->packet_from_event (event, this->header_flag, &len,
292 GST_LOG_OBJECT (this, "creating GDP header and payload buffer from event");
293 headerbuf = gst_buffer_new ();
294 gst_buffer_take_memory (headerbuf, -1,
295 gst_memory_new_wrapped (0, header, g_free, len, 0, len));
297 payloadbuf = gst_buffer_new ();
298 plen = gst_dp_header_payload_length (header);
299 if (plen && payload != NULL) {
300 gst_buffer_take_memory (payloadbuf, -1,
301 gst_memory_new_wrapped (0, payload, g_free, plen, 0, plen));
304 return gst_buffer_join (headerbuf, payloadbuf);
309 GST_WARNING_OBJECT (this, "could not create GDP header from event %s (%d)",
310 gst_event_type_get_name (event->type), event->type);
316 /* set our caps with streamheader, based on the latest newsegment and caps,
317 * and (possibly) GDP-serialized buffers of the streamheaders on the src pad */
319 gst_gdp_pay_reset_streamheader (GstGDPPay * this)
322 /* We use copies of these to avoid circular refcounts */
323 GstBuffer *new_segment_buf, *caps_buf, *tag_buf;
324 GstStructure *structure;
325 GstFlowReturn r = GST_FLOW_OK;
326 gboolean version_one_zero = TRUE;
328 GValue array = { 0 };
329 GValue value = { 0 };
331 GST_DEBUG_OBJECT (this, "start");
332 /* In version 0.2, we didn't need or send new segment or tags */
333 if (this->version == GST_DP_VERSION_0_2)
334 version_one_zero = FALSE;
336 if (version_one_zero) {
337 if (!this->new_segment_buf || !this->caps_buf) {
338 GST_DEBUG_OBJECT (this, "1.0, missing new_segment or caps, returning");
342 if (!this->caps_buf) {
343 GST_DEBUG_OBJECT (this, "0.2, missing caps, returning");
348 /* put copies of the buffers in a fixed list
349 * Stamp the buffers with offset and offset_end as well.
350 * We do this here so the offsets match the order the buffers go out in */
351 g_value_init (&array, GST_TYPE_ARRAY);
353 if (version_one_zero) {
354 gst_gdp_stamp_buffer (this, this->new_segment_buf);
355 GST_DEBUG_OBJECT (this, "1.0, appending copy of new segment buffer %p",
356 this->new_segment_buf);
357 new_segment_buf = gst_buffer_copy (this->new_segment_buf);
358 g_value_init (&value, GST_TYPE_BUFFER);
359 gst_value_set_buffer (&value, new_segment_buf);
360 gst_value_array_append_value (&array, &value);
361 g_value_unset (&value);
362 gst_buffer_unref (new_segment_buf);
365 gst_gdp_stamp_buffer (this, this->tag_buf);
366 GST_DEBUG_OBJECT (this, "1.0, appending current tags buffer %p",
368 tag_buf = this->tag_buf;
369 this->tag_buf = NULL;
371 g_value_init (&value, GST_TYPE_BUFFER);
372 gst_value_set_buffer (&value, tag_buf);
373 gst_value_array_append_value (&array, &value);
374 g_value_unset (&value);
375 gst_buffer_unref (tag_buf);
379 gst_gdp_stamp_buffer (this, this->caps_buf);
380 GST_DEBUG_OBJECT (this, "appending copy of caps buffer %p", this->caps_buf);
381 caps_buf = gst_buffer_copy (this->caps_buf);
382 g_value_init (&value, GST_TYPE_BUFFER);
383 gst_value_set_buffer (&value, caps_buf);
384 gst_value_array_append_value (&array, &value);
385 g_value_unset (&value);
386 gst_buffer_unref (caps_buf);
388 /* we also need to add GDP serializations of the streamheaders of the
390 structure = gst_caps_get_structure (this->caps, 0);
391 if (gst_structure_has_field (structure, "streamheader")) {
400 sh = gst_structure_get_value (structure, "streamheader");
401 buffers = g_value_peek_pointer (sh);
402 GST_DEBUG_OBJECT (this,
403 "Need to serialize %d incoming streamheader buffers on ours",
405 for (i = 0; i < buffers->len; ++i) {
408 GstBuffer *outbuffer;
410 bufval = &g_array_index (buffers, GValue, i);
411 buffer = g_value_peek_pointer (bufval);
412 /* this buffer is deserialized by gdpdepay as a regular buffer,
413 it needs IN_CAPS, because it's a streamheader - otherwise it
414 is mixed with regular data buffers */
415 GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_IN_CAPS);
416 GST_BUFFER_OFFSET (buffer) = GST_BUFFER_OFFSET_NONE;
417 GST_BUFFER_OFFSET_END (buffer) = GST_BUFFER_OFFSET_NONE;
418 GST_BUFFER_TIMESTAMP (buffer) = GST_CLOCK_TIME_NONE;
420 outbuffer = gst_gdp_pay_buffer_from_buffer (this, buffer);
422 g_value_unset (&array);
426 /* Setting IN_CAPS as other GDP event buffers */
427 GST_DEBUG_OBJECT (this,
428 "Setting IN_CAPS flag on outgoing buffer %" GST_PTR_FORMAT,
430 GST_BUFFER_FLAG_SET (outbuffer, GST_BUFFER_FLAG_IN_CAPS);
431 GST_BUFFER_OFFSET (outbuffer) = GST_BUFFER_OFFSET_NONE;
432 GST_BUFFER_OFFSET_END (outbuffer) = GST_BUFFER_OFFSET_NONE;
433 GST_BUFFER_TIMESTAMP (outbuffer) = GST_CLOCK_TIME_NONE;
435 g_value_init (&value, GST_TYPE_BUFFER);
436 gst_value_set_buffer (&value, outbuffer);
437 gst_value_array_append_value (&array, &value);
438 g_value_unset (&value);
440 gst_buffer_unref (outbuffer);
443 GST_DEBUG_OBJECT (this, "no streamheader to serialize");
446 GST_DEBUG_OBJECT (this, "%d serialized buffers on streamheaders",
447 gst_value_array_get_size (&array));
448 caps = gst_caps_from_string ("application/x-gdp");
449 structure = gst_caps_get_structure (caps, 0);
451 gst_structure_set_value (structure, "streamheader", &array);
452 g_value_unset (&array);
454 GST_DEBUG_OBJECT (this, "Setting caps on src pad %" GST_PTR_FORMAT, caps);
455 gst_pad_set_caps (this->srcpad, caps);
457 /* if these are our first ever buffers, send out new_segment first */
458 if (!this->sent_streamheader) {
462 gst_segment_init (&segment, GST_FORMAT_BYTES);
463 event = gst_event_new_segment (&segment);
465 GST_DEBUG_OBJECT (this, "Sending out new_segment event %p", event);
466 if (!gst_pad_push_event (this->srcpad, event)) {
467 GST_WARNING_OBJECT (this, "pushing new segment failed");
473 /* push out these streamheader buffers, then flush our internal queue */
474 GST_DEBUG_OBJECT (this, "Pushing GDP new_segment buffer %p with offset %"
475 G_GINT64_FORMAT ", offset_end %" G_GINT64_FORMAT, this->new_segment_buf,
476 GST_BUFFER_OFFSET (this->new_segment_buf),
477 GST_BUFFER_OFFSET_END (this->new_segment_buf));
478 /* we stored these bufs with refcount 1, so make sure we keep a ref */
479 r = gst_pad_push (this->srcpad, gst_buffer_ref (this->new_segment_buf));
480 if (r != GST_FLOW_OK) {
481 GST_WARNING_OBJECT (this, "pushing GDP newsegment buffer returned %d", r);
485 GST_DEBUG_OBJECT (this, "Pushing GDP tag buffer %p", this->tag_buf);
486 /* we stored these bufs with refcount 1, so make sure we keep a ref */
487 r = gst_pad_push (this->srcpad, gst_buffer_ref (this->tag_buf));
488 if (r != GST_FLOW_OK) {
489 GST_WARNING_OBJECT (this, "pushing GDP tag buffer returned %d", r);
493 GST_DEBUG_OBJECT (this, "Pushing GDP caps buffer %p", this->caps_buf);
494 r = gst_pad_push (this->srcpad, gst_buffer_ref (this->caps_buf));
495 if (r != GST_FLOW_OK) {
496 GST_WARNING_OBJECT (this, "pushing GDP caps buffer returned %d", r);
499 this->sent_streamheader = TRUE;
500 GST_DEBUG_OBJECT (this, "need to push %d queued buffers",
501 g_list_length (this->queue));
502 while (this->queue) {
505 buffer = GST_BUFFER_CAST (this->queue->data);
506 GST_DEBUG_OBJECT (this, "Pushing queued GDP buffer %p", buffer);
508 /* delete buffer from queue now */
509 this->queue = g_list_delete_link (this->queue, this->queue);
511 /* set caps and push */
512 r = gst_pad_push (this->srcpad, buffer);
513 if (r != GST_FLOW_OK) {
514 GST_WARNING_OBJECT (this, "pushing queued GDP buffer returned %d", r);
520 gst_caps_unref (caps);
521 GST_DEBUG_OBJECT (this, "stop");
527 GST_ELEMENT_ERROR (this, STREAM, FORMAT, (NULL),
528 ("failed to create GDP buffer from streamheader"));
529 return GST_FLOW_ERROR;
533 /* queue a buffer internally if we haven't sent streamheader buffers yet;
534 * otherwise, just push on, this takes ownership of the buffer. */
536 gst_gdp_queue_buffer (GstGDPPay * this, GstBuffer * buffer)
538 if (this->sent_streamheader) {
539 GST_LOG_OBJECT (this, "Pushing GDP buffer %p, caps %" GST_PTR_FORMAT,
541 return gst_pad_push (this->srcpad, buffer);
544 /* store it on an internal queue. buffer remains reffed. */
545 this->queue = g_list_append (this->queue, buffer);
546 GST_DEBUG_OBJECT (this, "streamheader not sent yet, "
547 "queued buffer %p, now %d buffers queued",
548 buffer, g_list_length (this->queue));
554 gst_gdp_pay_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
560 GstBuffer *outbuffer;
563 this = GST_GDP_PAY (parent);
565 /* we should have received a new_segment before, otherwise it's a bug.
566 * fake one in that case */
567 if (!this->new_segment_buf) {
571 GST_WARNING_OBJECT (this,
572 "did not receive new-segment before first buffer");
573 gst_segment_init (&segment, GST_FORMAT_BYTES);
574 event = gst_event_new_segment (&segment);
575 outbuffer = gst_gdp_buffer_from_event (this, event);
576 gst_event_unref (event);
578 /* GDP 0.2 doesn't know about new-segment, so this is not fatal */
580 GST_ELEMENT_WARNING (this, STREAM, ENCODE, (NULL),
581 ("Could not create GDP buffer from new segment event"));
583 GST_BUFFER_TIMESTAMP (outbuffer) = GST_BUFFER_TIMESTAMP (buffer);
584 GST_BUFFER_DURATION (outbuffer) = 0;
585 GST_BUFFER_FLAG_SET (outbuffer, GST_BUFFER_FLAG_IN_CAPS);
586 GST_DEBUG_OBJECT (this, "Storing buffer %p as new_segment_buf",
588 this->new_segment_buf = outbuffer;
592 /* make sure we've received caps before */
593 caps = gst_buffer_get_caps (buffer);
594 if (!this->caps && !caps)
597 /* if the caps have changed, process caps first */
598 if (caps && !gst_caps_is_equal (this->caps, caps)) {
599 GST_LOG_OBJECT (this, "caps changed to %p, %" GST_PTR_FORMAT, caps, caps);
600 gst_caps_replace (&(this->caps), caps);
601 outbuffer = gst_gdp_buffer_from_caps (this, caps);
605 GST_BUFFER_TIMESTAMP (outbuffer) = GST_BUFFER_TIMESTAMP (buffer);
606 GST_BUFFER_DURATION (outbuffer) = 0;
607 GST_BUFFER_FLAG_SET (outbuffer, GST_BUFFER_FLAG_IN_CAPS);
610 gst_buffer_unref (this->caps_buf);
611 this->caps_buf = outbuffer;
612 gst_gdp_pay_reset_streamheader (this);
616 gst_caps_unref (caps);
619 /* create a GDP header packet,
620 * then create a GST buffer of the header packet and the buffer contents */
621 outbuffer = gst_gdp_pay_buffer_from_buffer (this, buffer);
625 /* If the incoming buffer is IN_CAPS, that means we have it on the caps
626 * as streamheader, and we have serialized a GDP version of it and put it
628 if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_IN_CAPS)) {
629 GST_DEBUG_OBJECT (this, "Setting IN_CAPS flag on outgoing buffer %p",
631 GST_BUFFER_FLAG_SET (outbuffer, GST_BUFFER_FLAG_IN_CAPS);
634 gst_gdp_stamp_buffer (this, outbuffer);
635 GST_BUFFER_TIMESTAMP (outbuffer) = GST_BUFFER_TIMESTAMP (buffer);
636 GST_BUFFER_DURATION (outbuffer) = GST_BUFFER_DURATION (buffer);
638 ret = gst_gdp_queue_buffer (this, outbuffer);
641 gst_buffer_unref (buffer);
649 /* when returning a fatal error as a GstFlowReturn we must post an error
651 GST_ELEMENT_ERROR (this, STREAM, FORMAT, (NULL),
652 ("first received buffer does not have caps set"));
654 gst_caps_unref (caps);
655 ret = GST_FLOW_NOT_NEGOTIATED;
660 GST_ELEMENT_ERROR (this, STREAM, ENCODE, (NULL),
661 ("Could not create GDP buffer from caps %" GST_PTR_FORMAT, caps));
662 gst_caps_unref (caps);
663 ret = GST_FLOW_ERROR;
669 GST_ELEMENT_ERROR (this, STREAM, ENCODE, (NULL),
670 ("Could not create GDP buffer from buffer"));
671 ret = GST_FLOW_ERROR;
677 gst_gdp_pay_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
679 GstBuffer *outbuffer;
680 GstGDPPay *this = GST_GDP_PAY (parent);
681 GstFlowReturn flowret;
685 GST_DEBUG_OBJECT (this, "received event %p of type %s (%d)",
686 event, gst_event_type_get_name (event->type), event->type);
688 /* now turn the event into a buffer */
689 outbuffer = gst_gdp_buffer_from_event (this, event);
693 GST_BUFFER_TIMESTAMP (outbuffer) = GST_EVENT_TIMESTAMP (event);
694 GST_BUFFER_DURATION (outbuffer) = 0;
696 /* if we got a new segment or tag event, we should put it on our streamheader,
697 * and not send it on */
698 switch (GST_EVENT_TYPE (event)) {
699 case GST_EVENT_SEGMENT:
700 GST_DEBUG_OBJECT (this, "Storing in caps buffer %p as new_segment_buf",
703 if (this->new_segment_buf)
704 gst_buffer_unref (this->new_segment_buf);
705 this->new_segment_buf = outbuffer;
707 GST_BUFFER_FLAG_SET (outbuffer, GST_BUFFER_FLAG_IN_CAPS);
708 gst_gdp_pay_reset_streamheader (this);
710 case GST_EVENT_CAPS:{
711 gst_event_parse_caps (event, &caps);
712 if (this->caps == NULL || !gst_caps_is_equal (this->caps, caps)) {
713 GST_INFO_OBJECT (pad, "caps changed to %" GST_PTR_FORMAT, caps);
714 gst_caps_replace (&this->caps, caps);
715 outbuffer = gst_gdp_buffer_from_caps (this, caps);
716 if (outbuffer == NULL)
717 goto no_buffer_from_caps;
719 GST_BUFFER_DURATION (outbuffer) = 0;
720 GST_BUFFER_FLAG_SET (outbuffer, GST_BUFFER_FLAG_IN_CAPS);
722 gst_buffer_unref (this->caps_buf);
723 this->caps_buf = outbuffer;
724 gst_gdp_pay_reset_streamheader (this);
729 GST_DEBUG_OBJECT (this, "Storing in caps buffer %p as tag_buf",
733 gst_buffer_unref (this->tag_buf);
734 this->tag_buf = outbuffer;
736 GST_BUFFER_FLAG_SET (outbuffer, GST_BUFFER_FLAG_IN_CAPS);
737 gst_gdp_pay_reset_streamheader (this);
740 GST_DEBUG_OBJECT (this, "queuing GDP buffer %p of event %p", outbuffer,
742 flowret = gst_gdp_queue_buffer (this, outbuffer);
743 if (flowret != GST_FLOW_OK)
748 /* if we have EOS, we should send on EOS ourselves */
749 if (GST_EVENT_TYPE (event) == GST_EVENT_EOS) {
750 GST_DEBUG_OBJECT (this, "Sending on EOS event %p", event);
751 /* ref, we unref later again */
752 ret = gst_pad_push_event (this->srcpad, gst_event_ref (event));
756 gst_event_unref (event);
763 GST_ELEMENT_WARNING (this, STREAM, ENCODE, (NULL),
764 ("Could not create GDP buffer from received event (type %s)",
765 gst_event_type_get_name (event->type)));
771 GST_ELEMENT_ERROR (this, STREAM, ENCODE, (NULL),
772 ("Could not create GDP buffer from caps %" GST_PTR_FORMAT, caps));
778 GST_WARNING_OBJECT (this, "queueing GDP event buffer returned %d", flowret);
785 gst_gdp_pay_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
790 this = GST_GDP_PAY (parent);
792 switch (GST_EVENT_TYPE (event)) {
794 /* we refuse seek for now. */
795 gst_event_unref (event);
799 case GST_EVENT_NAVIGATION:
801 /* everything else is passed */
802 res = gst_pad_push_event (this->sinkpad, event);
810 gst_gdp_pay_set_property (GObject * object, guint prop_id,
811 const GValue * value, GParamSpec * pspec)
815 g_return_if_fail (GST_IS_GDP_PAY (object));
816 this = GST_GDP_PAY (object);
819 case PROP_CRC_HEADER:
821 g_value_get_boolean (value) ? GST_DP_HEADER_FLAG_CRC_HEADER : 0;
822 this->header_flag = this->crc_header | this->crc_payload;
824 case PROP_CRC_PAYLOAD:
826 g_value_get_boolean (value) ? GST_DP_HEADER_FLAG_CRC_PAYLOAD : 0;
827 this->header_flag = this->crc_header | this->crc_payload;
830 this->version = g_value_get_enum (value);
833 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
839 gst_gdp_pay_get_property (GObject * object, guint prop_id,
840 GValue * value, GParamSpec * pspec)
844 g_return_if_fail (GST_IS_GDP_PAY (object));
845 this = GST_GDP_PAY (object);
848 case PROP_CRC_HEADER:
849 g_value_set_boolean (value, this->crc_header);
851 case PROP_CRC_PAYLOAD:
852 g_value_set_boolean (value, this->crc_payload);
855 g_value_set_enum (value, this->version);
858 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
863 static GstStateChangeReturn
864 gst_gdp_pay_change_state (GstElement * element, GstStateChange transition)
866 GstStateChangeReturn ret;
867 GstGDPPay *this = GST_GDP_PAY (element);
869 switch (transition) {
870 case GST_STATE_CHANGE_READY_TO_PAUSED:
876 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
878 switch (transition) {
879 case GST_STATE_CHANGE_PAUSED_TO_READY:
880 gst_gdp_pay_reset (this);
890 gst_gdp_pay_plugin_init (GstPlugin * plugin)
892 if (!gst_element_register (plugin, "gdppay", GST_RANK_NONE, GST_TYPE_GDP_PAY))