From bfd2b35dda34bd54346adf0293f9947dfa32ec06 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 20 Jun 2006 14:57:09 +0000 Subject: Added documentation for the rtsp plugin. Fixes #345393. Original commit message from CVS: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: * gst/rtsp/gstrtpdec.c: (gst_rtpdec_class_init): * gst/rtsp/gstrtspsrc.c: * gst/rtsp/gstrtspsrc.h: Added documentation for the rtsp plugin. Fixes #345393. --- gst/rtsp/gstrtpdec.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'gst/rtsp/gstrtpdec.c') diff --git a/gst/rtsp/gstrtpdec.c b/gst/rtsp/gstrtpdec.c index c22d4cca..39917423 100644 --- a/gst/rtsp/gstrtpdec.c +++ b/gst/rtsp/gstrtpdec.c @@ -18,6 +18,19 @@ */ /* Element-Checklist-Version: 5 */ +/** + * SECTION:element-rtpdec + * + * + * + * A simple RTP session manager used internally by rtspsrc. + * + * + * + * Last reviewed on 2006-06-20 (0.10.4) + */ + + #include "gstrtpdec.h" GST_DEBUG_CATEGORY (rtpdec_debug); @@ -138,7 +151,10 @@ gst_rtpdec_class_init (gpointer g_class) gobject_class->set_property = gst_rtpdec_set_property; gobject_class->get_property = gst_rtpdec_get_property; - g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SKIP, g_param_spec_int ("skip", "skip", "skip", G_MININT, G_MAXINT, 0, G_PARAM_READWRITE)); /* CHECKME */ + /* FIXME, this is unused and probably copied from somewhere */ + g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SKIP, + g_param_spec_int ("skip", "Skip", "skip (unused)", G_MININT, G_MAXINT, 0, + G_PARAM_READWRITE)); parent_class = g_type_class_peek_parent (klass); -- cgit