gst-libs/gst/rtp/gstbasertpdepayload.c: the source pad always uses fixed caps.
authorWim Taymans <wim.taymans@gmail.com>
Wed, 27 Sep 2006 11:06:54 +0000 (11:06 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Wed, 27 Sep 2006 11:06:54 +0000 (11:06 +0000)
Original commit message from CVS:
* gst-libs/gst/rtp/gstbasertpdepayload.c:
(gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
(gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
(gst_base_rtp_depayload_set_gst_timestamp):
the source pad always uses fixed caps.

ChangeLog
gst-libs/gst/rtp/gstbasertpdepayload.c

index 8794412..f6bd49d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2006-09-27  Wim Taymans  <wim@fluendo.com>
 
+       * gst-libs/gst/rtp/gstbasertpdepayload.c:
+       (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_push_full),
+       (gst_base_rtp_depayload_push_ts), (gst_base_rtp_depayload_process),
+       (gst_base_rtp_depayload_set_gst_timestamp):
+       the source pad always uses fixed caps.
+
+2006-09-27  Wim Taymans  <wim@fluendo.com>
+
        * docs/libs/gst-plugins-base-libs-docs.sgml:
        * docs/libs/gst-plugins-base-libs-sections.txt:
        * gst-libs/gst/audio/gstaudioclock.c:
index 5a8bae2..2c7dab0 100644 (file)
@@ -150,6 +150,7 @@ gst_base_rtp_depayload_init (GstBaseRTPDepayload * filter, gpointer g_class)
       gst_element_class_get_pad_template (GST_ELEMENT_CLASS (g_class), "src");
   g_return_if_fail (pad_template != NULL);
   filter->srcpad = gst_pad_new_from_template (pad_template, "src");
+  gst_pad_use_fixed_caps (filter->srcpad);
   gst_element_add_pad (GST_ELEMENT (filter), filter->srcpad);
 
   filter->queue = g_queue_new ();