+2007-04-21 Tim-Philipp Müller <tim at centricular dot net>
+
+ * docs/libs/gst-plugins-base-libs.types:
+ * gst-libs/gst/rtp/gstbasertpaudiopayload.c:
+ (gst_base_rtp_audio_payload_class_init):
+ * gst-libs/gst/rtp/gstbasertpdepayload.c:
+ * gst-libs/gst/rtp/gstbasertppayload.c:
+ Some minor docs fixes and additions; also add missing 'Since' bits.
+
2007-04-21 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Zeeshan Ali <zeenix gmail com>
gst_base_rtp_depayload_get_type
#include <gst/rtp/gstbasertppayload.h>
gst_basertppayload_get_type
+#include <gst/rtp/gstbasertpaudiopayload.h>
+gst_base_rtp_audio_payload_get_type
#include <gst/video/gstvideofilter.h>
gstelement_class->change_state =
GST_DEBUG_FUNCPTR (gst_base_rtp_payload_audio_change_state);
+ /**
+ * GstBaseRTPAudioPayload:min-ptime:
+ *
+ * Minimum duration of the packet data in ns (can't go above MTU)
+ *
+ * Since: 0.10.13
+ **/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_MIN_PTIME,
g_param_spec_int64 ("min-ptime", "Min packet time",
"Minimum duration of the packet data in ns (can't go above MTU)",
* the buffer downstream.
*
* Returns: a #GstFlowReturn
+ *
+ * Since: 0.10.13
*/
GstFlowReturn
gst_base_rtp_audio_payload_push (GstBaseRTPAudioPayload * baseaudiopayload,
* Gets the internal adapter used by the depayloader.
*
* Returns: a #GstAdapter.
+ *
+ * Since: 0.10.13
*/
GstAdapter *
gst_base_rtp_audio_payload_get_adapter (GstBaseRTPAudioPayload
* Boston, MA 02111-1307, USA.
*/
+/**
+ * SECTION:gstbasertpdepayload
+ * @short_description: Base class for RTP depayloader
+ *
+ * <refsect2>
+ * <para>
+ * Provides a base class for RTP depayloaders
+ * </para>
+ * </refsect2>
+ */
+
#include "gstbasertpdepayload.h"
GST_DEBUG_CATEGORY_STATIC (basertpdepayload_debug);
* Library General Public License for more
*/
+/**
+ * SECTION:gstbasertppayload
+ * @short_description: Base class for RTP payloader
+ *
+ * <refsect2>
+ * <para>
+ * Provides a base class for RTP payloaders
+ * </para>
+ * </refsect2>
+ */
+
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
static GstElementClass *parent_class = NULL;
+/* FIXME 0.11: API should be changed to gst_base_typ_payload_xyz */
+
GType
gst_basertppayload_get_type (void)
{