diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2006-06-20 14:57:09 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-06-20 14:57:09 +0000 |
commit | bfd2b35dda34bd54346adf0293f9947dfa32ec06 (patch) | |
tree | 6094c5e93b19a19d2df38b37c7ff7f9c7dc5b96d /gst/rtsp/gstrtpdec.c | |
parent | b24f97c6950a0760762ff89a25621bce48ab9efe (diff) |
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.
Diffstat (limited to 'gst/rtsp/gstrtpdec.c')
-rw-r--r-- | gst/rtsp/gstrtpdec.c | 18 |
1 files changed, 17 insertions, 1 deletions
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 + * + * <refsect2> + * <para> + * A simple RTP session manager used internally by rtspsrc. + * </para> + * </refsect2> + * + * 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); |